30 lines
1.1 KiB
Plaintext
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 © <img class="logoImg" src="~/images/logoSteamware.png" style="height: 30px;" />
|
|
</div> |