| Index: chrome/browser/resources/bookmark_manager/js/bmm/bookmarklist.js
|
| ===================================================================
|
| --- chrome/browser/resources/bookmark_manager/js/bmm/bookmarklist.js (revision 39450)
|
| +++ chrome/browser/resources/bookmark_manager/js/bmm/bookmarklist.js (working copy)
|
| @@ -61,7 +61,11 @@
|
| cr.dispatchSimpleEvent(this, 'invalidId');
|
| return;
|
| }
|
| - listLookup = {};
|
| + // Remove all fields without recreating the object since other code
|
| + // references it.
|
| + for (var id in listLookup){
|
| + delete listLookup[id];
|
| + }
|
| this.clear();
|
| var showFolder = this.showFolder();
|
| items.forEach(function(item) {
|
|
|