Bug 583041 - Style Editor integration; part 2; r=rcampbell

This commit is contained in:
Cedric Vivier 2011-10-03 19:08:15 +08:00
parent 59e5eaa800
commit d35d92b234

View File

@ -222,7 +222,17 @@ SourceEditor.prototype = {
}, this);
if (aCallback) {
aCallback(this);
let iframe = this._view._frame;
let document = iframe.contentDocument;
if (!document || document.readyState != "complete") {
let onIframeLoad = function () {
iframe.contentWindow.removeEventListener("load", onIframeLoad, false);
aCallback(this);
}.bind(this);
iframe.contentWindow.addEventListener("load", onIframeLoad, false);
} else {
aCallback(this);
}
}
},