Bug 298134 - strict warning in bookmarksMenu.js: undefined property event.type. patch from Henrik Skupin <hskupin@gmail.com>, r+a=bsmedberg.

This commit is contained in:
mozilla.mano%sent.com 2005-07-05 19:46:02 +00:00
parent 9f351fd162
commit 7668743a4a

View File

@ -1075,7 +1075,7 @@ var BookmarksToolbarRDFObserver =
onEndUpdateBatch: function (aDataSource)
{
this._overflowTimerInEffect = true;
setTimeout(BookmarksToolbar.resizeFunc, 0);
setTimeout(BookmarksToolbar.resizeFunc, 0, null);
},
_overflowTimerInEffect: false,
setOverflowTimeout: function (aSource, aProperty)
@ -1086,6 +1086,6 @@ var BookmarksToolbarRDFObserver =
|| aProperty.Value == gNC_NS+"LastModifiedDate")
return;
this._overflowTimerInEffect = true;
setTimeout(BookmarksToolbar.resizeFunc, 0);
setTimeout(BookmarksToolbar.resizeFunc, 0, null);
}
}