1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-25 09:15:46 +01:00

Change Storage#newObject signature.

This commit is contained in:
Kris Maglione
2009-10-29 20:30:24 -04:00
parent 172d04c1f2
commit 9bb01ce7ef
5 changed files with 12 additions and 12 deletions

View File

@@ -249,7 +249,7 @@ function Bookmarks() //{{{
statusline.updateUrl();
};
var cache = storage.newObject("bookmark-cache", Cache, false);
var cache = storage.newObject("bookmark-cache", Cache, { store: false });
storage.addObserver("bookmark-cache", bookmarkObserver, window);
/////////////////////////////////////////////////////////////////////////////}}}