Skip to content

Commit

Permalink
Tidy whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Integralist committed Dec 4, 2011
1 parent e539030 commit aec0934
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions Assets/Scripts/DOMready.js
Expand Up @@ -2,26 +2,26 @@ var DOMready = (function() {


// Variables used throughout this script // Variables used throughout this script
var win = window, var win = window,
doc = win.document, doc = win.document,
dce = doc.createElement, dce = doc.createElement,
supportAEL = (function(){ supportAEL = (function(){
if (doc.addEventListener) { if (doc.addEventListener) {
return true; return true;
} else { } else {
return false; return false;
} }
}()), }()),
queue = [], queue = [],
exec, exec,
loaded, loaded,
fallback_onload, fallback_onload,
explorerTimer, explorerTimer,
readyStateTimer, readyStateTimer,
isIE = (function() { isIE = (function() {
var undef, var undef,
v = 3, v = 3,
div = doc.createElement('div'), div = doc.createElement('div'),
all = div.getElementsByTagName('i'); all = div.getElementsByTagName('i');


while ( while (
div.innerHTML = '<!--[if gt IE ' + (++v) + ']><i></i><![endif]-->', div.innerHTML = '<!--[if gt IE ' + (++v) + ']><i></i><![endif]-->',
Expand Down

0 comments on commit aec0934

Please sign in to comment.