Bug 964510 - Send a delayed startup notification in Fennec. r=mfinkle

This commit is contained in:
Wes Johnston 2014-01-27 15:42:00 -08:00
Родитель 821fefc764
Коммит 0f7f40856f
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -306,6 +306,13 @@ var BrowserApp = {
dump("zerdatime " + Date.now() + " - browser chrome startup finished.");
this.deck = document.getElementById("browsers");
this.deck.addEventListener("DOMContentLoaded", function BrowserApp_delayedStartup() {
try {
BrowserApp.deck.removeEventListener("DOMContentLoaded", BrowserApp_delayedStartup, false);
Services.obs.notifyObservers(window, "browser-delayed-startup-finished", "");
} catch(ex) { console.log(ex); }
}, false);
BrowserEventHandler.init();
ViewportHandler.init();