1
0
mirror of https://github.com/chyzy/RSystem-MVC synced 2024-11-29 08:55:27 +01:00
RSystem-MVC-Fork/RSystem/Scripts/scale.js
2018-04-17 11:20:49 +02:00

9 lines
228 B
JavaScript

$(document).ready(() => {
if (window.innerHeight > 790) {
$("body").css({
'zoom': '1.10',
'-moz-transform': 'scale(1.10)',
'-moz-transform-origin': '0 0'
});
}
})