Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions build/director.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


//
// Generated on Tue Apr 01 2014 11:43:26 GMT-0700 (PDT) by Nodejitsu, Inc (Using Codesurgeon).
// Generated on Thu Jun 26 2014 10:43:17 GMT+0100 (BST) by Nodejitsu, Inc (Using Codesurgeon).
// Version 1.2.3
//

Expand Down Expand Up @@ -106,8 +106,11 @@ var listener = {
if(document.readyState === 'complete') {
onDOMReady();
}
else {
window.addEventListener('onload', onDOMReady);
else if (window.addEventListener) {
window.addEventListener('load', onDOMReady, false);
}
else if (window.attachEvent) {
window.attachEvent('onload', onDOMReady);
}
}
else {
Expand Down
Loading