Files
2022-04-14 17:25:12 +02:00

30 lines
1.1 KiB
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">
<div class="px-2 align-bottom">
<span style="color: #DEDEDE;">MP MON</span>itor
</div>
<div class="px-2 small ml-3 align-bottom">
<sub>v: @typeof(MP_MON.MvcApplication).Assembly.GetName().Version | addr: @Request.UserHostAddress</sub>
</div>
</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>