remove spaces
This commit is contained in:
parent
7092a5ea6b
commit
7b201d3780
|
|
@ -94,7 +94,7 @@
|
|||
// requestFullScreen
|
||||
function requestFullScreen(element) { /* Supports most browsers and their versions.*/ var requestMethod = element.requestFullScreen || element.webkitRequestFullScreen || element.mozRequestFullScreen || element.msRequestFullScreen; if (requestMethod) { /*Native full screen.*/ requestMethod.call(element); } else if (typeof window.ActiveXObject !== "undefined") { /*Older IE.*/ var wscript = new ActiveXObject("WScript.Shell"); if (wscript !== null) { wscript.SendKeys("{F11}"); } } }
|
||||
</script>
|
||||
|
||||
|
||||
<script> // Mod Loader
|
||||
runAfterLoadList = [];
|
||||
// runAfterLoad() takes a function and adds it to the runAfterLoadList.
|
||||
|
|
|
|||
Loading…
Reference in New Issue