diff options
author | anekos | 2011-06-11 17:01:37 -0700 |
---|---|---|
committer | anekos | 2011-06-11 17:01:37 -0700 |
commit | 1c4018261793e95c5e4ad4967847fdb9b7e6c9d1 (patch) | |
tree | 58f45e0a8cd96eb2889230de7b617af5e7dd3b44 /hatena-bookmark-search.js | |
parent | 10158d82828f4c90d1d416c51cccff81a68a7151 (diff) | |
parent | 0bababc66bac46a14408cb60e7262bdcb8703005 (diff) | |
download | vimperator-plugins-1c4018261793e95c5e4ad4967847fdb9b7e6c9d1.tar.bz2 |
Merge pull request #13 from lyricallogical/fix_for_eaa063f66dbb
fix for eaa063f66dbb
Diffstat (limited to 'hatena-bookmark-search.js')
-rw-r--r-- | hatena-bookmark-search.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hatena-bookmark-search.js b/hatena-bookmark-search.js index 746843f..22fc58d 100644 --- a/hatena-bookmark-search.js +++ b/hatena-bookmark-search.js @@ -245,7 +245,7 @@ HatenaBookmark.Cache = { get store() {
if (!this._store) {
let key = 'plugins-hatena-bookmark-search-data';
- this._store = storage.newMap(key, true);
+ this._store = storage.newMap(key, {store: true});
}
return this._store;
},
|