330851 - ts/txul regressions... experiment by reverting to old init behavior. r=annie.sullivan@gmail.com

This commit is contained in:
beng%bengoodger.com 2006-03-17 18:12:49 +00:00
Родитель 313a8ded82
Коммит a867d35b6d
3 изменённых файлов: 6 добавлений и 2 удалений

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

@ -865,6 +865,10 @@ function delayedStartup()
document.getElementById("PersonalToolbar")
.controllers.appendController(BookmarksMenuController);
#else
var toolbar = document.getElementById("bookmarksBarContent");
toolbar._init();
var menu = document.getElementById("bookmarksMenuPopup");
menu._init();
window.controllers.appendController(PlacesController);
#endif

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

@ -15,7 +15,7 @@
// do not regress browser window show time (Ts/Txul)
if (this.hasAttribute("asyncinit")) {
var self = this;
setTimeout(function() { self._init(); }, 0);
//setTimeout(function() { self._init(); }, 0);
}
else
this._init();

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

@ -53,7 +53,7 @@
// do not regress browser window show time (Ts/Txul)
if (this.hasAttribute("asyncinit")) {
var self = this;
setTimeout(function() { self._init(); }, 0);
//setTimeout(function() { self._init(); }, 0);
}
else
this._init();