aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValerio Virgillito2012-02-16 11:39:25 -0800
committerValerio Virgillito2012-02-16 11:39:25 -0800
commitb12b167116b757e1a945c05f45991d0ed385aed3 (patch)
tree81b8929154c775ca55e8f76e35b21d8315e21d71
parentd52aca45e0357b5597e13d9b74998abb75fabea5 (diff)
downloadninja-b12b167116b757e1a945c05f45991d0ed385aed3.tar.gz
Fixing the load document event being fired twice.
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
-rwxr-xr-xjs/io/document/html-document.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/js/io/document/html-document.js b/js/io/document/html-document.js
index 88cfec67..f4757438 100755
--- a/js/io/document/html-document.js
+++ b/js/io/document/html-document.js
@@ -455,7 +455,8 @@ exports.HTMLDocument = Montage.create(BaseDocument, {
455 } 455 }
456 } 456 }
457 457
458 this.callback(this); 458 // Remving this callback and using the callback from the css load
459 // this.callback(this);
459 460
460 } 461 }
461 }, 462 },