ultrawidify/js/uw.js

25 lines
606 B
JavaScript
Raw Normal View History

if(Debug.debug)
console.log("\n\n\n\n\n\n ——— Sᴛλʀᴛɪɴɢ Uʟᴛʀᴀɪɪʏ ———\n << ʟᴏᴀᴅɪɴɢ ᴍᴀɪɴ ꜰɪʟᴇ >>\n\n\n\n");
// start autoar and setup everything
2016-10-16 13:13:34 +02:00
$(document).ready(function() {
if(Debug.debug)
console.log("uw::document.ready | document is ready. Starting ar script ...");
//
ArDetect.arSetup();
2017-01-02 17:45:51 +01:00
document.addEventListener("mozfullscreenchange", function( event ) {
if(FullScreenDetect.isFullScreen()){
// full screen is on
}
else{
Resizer.reset();
}
});
});