| Index: messageResponder.js |
| =================================================================== |
| --- a/messageResponder.js |
| +++ b/messageResponder.js |
| @@ -115,22 +115,17 @@ |
| isRTL: Utils.chromeRegistry.isLocaleRTL("adblockplus") |
| }); |
| } |
| else |
| callback(null); |
| break; |
| case "app.open": |
| if (message.what == "options") |
| - { |
| - if (typeof global.openOptions == "function") |
| - global.openOptions(); |
| - else |
| - require("ui").UI.openFiltersDialog(); |
| - } |
| + ext.showOptions(); |
| break; |
| case "subscriptions.get": |
| var subscriptions = FilterStorage.subscriptions.filter(function(s) |
| { |
| if (message.ignoreDisabled && s.disabled) |
| return false; |
| if (s instanceof DownloadableSubscription && message.downloadable) |
| return true; |