Shutdown image
This commit is contained in:
Binary file not shown.
Before Width: | Height: | Size: 982 KiB After Width: | Height: | Size: 167 KiB |
@@ -205,6 +205,6 @@
|
|||||||
</div>
|
</div>
|
||||||
<button id="ID_RenterUploadsOk" style="width: 110px" type="button">Back</button>
|
<button id="ID_RenterUploadsOk" style="width: 110px" type="button">Back</button>
|
||||||
</div>
|
</div>
|
||||||
<div id="shutdown_window" class="hidden-element" style="padding: 0; margin: 0;position: fixed; height: 100%; width: 100%;background-image: url(./images/shutdown.gif); background-size: cover; z-index: 99999"></div>
|
<div id="shutdown_window" class="hidden-element" style="padding: 0; margin: 0;position: fixed; height: 100%; width: 100%;background-image: url(./images/shutdown.gif); background-size: 100% 100%; background-repeat: no-repeat; z-index: 99999"></div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
@@ -188,7 +188,10 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
displayShutdownWindow: () => {
|
displayShutdownWindow: () => {
|
||||||
setMainWindow('shutdown_window');
|
const div = document.getElementById('shutdown_window');
|
||||||
|
document.body.innerHTML = '';
|
||||||
|
document.body.appendChild(div);
|
||||||
|
div.classList.remove('hidden-element');
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
})();
|
})();
|
||||||
|
Reference in New Issue
Block a user