OLD | NEW |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-2016 Eyeo GmbH | 3 * Copyright (C) 2006-2016 Eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 687 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
698 | 698 |
699 for (var i = 0; i < keys.length; i++) | 699 for (var i = 0; i < keys.length; i++) |
700 { | 700 { |
701 var key = keys[i]; | 701 var key = keys[i]; |
702 if (key in settings) | 702 if (key in settings) |
703 items[key] = settings[key]; | 703 items[key] = settings[key]; |
704 } | 704 } |
705 | 705 |
706 setTimeout(callback, 0, items); | 706 setTimeout(callback, 0, items); |
707 }, | 707 }, |
708 set: function(key, value, callback) | 708 set: function(items, callback) |
709 { | 709 { |
710 safari.extension.settings[key] = value; | 710 for (let key in items) |
711 | 711 { |
| 712 if (items.hasOwnProperty(key)) |
| 713 { |
| 714 safari.extension.settings[key] = items[key]; |
| 715 } |
| 716 } |
712 if (callback) | 717 if (callback) |
713 setTimeout(callback, 0); | 718 setTimeout(callback, 0); |
714 }, | 719 }, |
715 remove: function(key, callback) | 720 remove: function(key, callback) |
716 { | 721 { |
717 delete safari.extension.settings[key]; | 722 delete safari.extension.settings[key]; |
718 | 723 |
719 if (callback) | 724 if (callback) |
720 setTimeout(callback, 0); | 725 setTimeout(callback, 0); |
721 }, | 726 }, |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
762 /* Windows */ | 767 /* Windows */ |
763 ext.windows = { | 768 ext.windows = { |
764 // Safari doesn't provide as rich a windows API as Chrome does, so instead | 769 // Safari doesn't provide as rich a windows API as Chrome does, so instead |
765 // of chrome.windows.create we have to fall back to just opening a new tab. | 770 // of chrome.windows.create we have to fall back to just opening a new tab. |
766 create: function(createData, callback) | 771 create: function(createData, callback) |
767 { | 772 { |
768 ext.pages.open(createData.url, callback); | 773 ext.pages.open(createData.url, callback); |
769 } | 774 } |
770 }; | 775 }; |
771 })(); | 776 })(); |
OLD | NEW |