Files
MoonPro.net/MP-MON/Views/Shared/_footer.cshtml
T
Samuele E. Locatelli ba297f40e8 FIx display MON
2020-10-19 11:42:41 +02:00

25 lines
863 B
Plaintext

<script>
// Browser windows size collector
window.onresize = function (event) {
SetWidthHeight();
}
function SetWidthHeight() {
var height = $(window).outerHeight();
var width = $(window).outerWidth();
document.getElementById("windowSize").innerHTML = "(w) " + width + "x" + height + " | " + screen.width + "x" + screen.height + " (s)";
}
$(function () {
SetWidthHeight();
});
</script>
<div class="d-flex justify-content-start pl-3 text-left">
<span style="color: #DEDEDE;">MP MON</span>itor
</div>
<div class="d-flex justify-content-center text-center">
<sub><span id="windowSize"></span></sub>
</div>
<div class="d-flex justify-content-end pr-3 text-right">
2007-@DateTime.Now.Year &copy; <img class="logoImg" src="~/images/logoSteamware.png" style="height: 30px;" />
</div>