mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-21 17:59:34 +00:00
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:
parent
9f351fd162
commit
7668743a4a
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user