31 lines
697 B
JavaScript
31 lines
697 B
JavaScript
// Browser windows size collector
|
|
window.onresize = function (event) {
|
|
SetWidthHeight();
|
|
}
|
|
function SetWidthHeight() {
|
|
var height = $(window).outerHeight();
|
|
var width = $(window).outerWidth();
|
|
|
|
$.ajax({
|
|
url: "./windowSize.ashx",
|
|
data: {
|
|
'Height': height,
|
|
'Width': width,
|
|
'PixRat': devicePixelRatio,
|
|
'scrWidth': screen.width,
|
|
'scrHeight': screen.height
|
|
},
|
|
contentType: "application/json; charset=utf-8",
|
|
dataType: "json"
|
|
}).done(function (data) {
|
|
if (data.isFirst) {
|
|
window.location.reload();
|
|
};
|
|
}).fail(function (xhr) {
|
|
//alert("Problem to retrieve browser size.");
|
|
});
|
|
|
|
}
|
|
$(function () {
|
|
SetWidthHeight();
|
|
}); |