Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: safari/ext/background.js

Issue 29350042: Issue 4023 - Move storage of subscription lists to localStorage (Closed)
Patch Set: Make sure entry["compressed"] is truthful Created Sept. 8, 2016, 11:40 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « qunit/tests/io.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: safari/ext/background.js
===================================================================
--- a/safari/ext/background.js
+++ b/safari/ext/background.js
@@ -540,12 +540,12 @@
setTimeout(callback, 0, items);
},
- set: function(key, value, callback)
+ set: function(items, callback)
{
- safari.extension.settings[key] = value;
-
+ for (let key in items)
+ safari.extension.settings[key] = items[key];
if (callback)
- setTimeout(callback, 0);
+ setTimeout(callback);
},
remove: function(key, callback)
{
« no previous file with comments | « qunit/tests/io.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld