Index: safari/ext/background.js |
=================================================================== |
--- a/safari/ext/background.js |
+++ b/safari/ext/background.js |
@@ -705,10 +705,12 @@ |
setTimeout(callback, 0, items); |
}, |
- set: function(key, value, callback) |
+ set: function(items, callback) |
{ |
- safari.extension.settings[key] = value; |
- |
+ for (let key in items) |
+ { |
Sebastian Noack
2016/03/31 19:30:25
Nit: the braces here are unnecessary.
|
+ safari.extension.settings[key] = items[key]; |
+ } |
if (callback) |
setTimeout(callback, 0); |
Sebastian Noack
2016/03/31 19:30:25
Nit: While changing the code here anyway, note tha
|
}, |