| Left: | ||
| Right: |
| LEFT | RIGHT |
|---|---|
| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 49 if (arguments.length > 0) | 49 if (arguments.length > 0) |
| 50 { | 50 { |
| 51 var lastArg = arguments[arguments.length - 1]; | 51 var lastArg = arguments[arguments.length - 1]; |
| 52 if (typeof lastArg == "function") | 52 if (typeof lastArg == "function") |
| 53 callback = lastArg; | 53 callback = lastArg; |
| 54 | 54 |
| 55 for (var i = 0; i < arguments.length - (callback ? 1 : 0); i++) | 55 for (var i = 0; i < arguments.length - (callback ? 1 : 0); i++) |
| 56 message[paramKeys[i]] = arguments[i]; | 56 message[paramKeys[i]] = arguments[i]; |
| 57 } | 57 } |
| 58 | 58 |
| 59 // Edge silently fails when sendMessage is called with a callback | 59 // Edge 38.14393 silently fails when sendMessage is called with a callback |
| 60 // parameter of undefined, so we work around that here. | 60 // parameter of null, so we work around that here. |
|
kzar
2017/01/18 04:49:50
The callback parameter will be `undefined` not `nu
Oleksandr
2017/01/19 20:51:01
The issue on Microsoft's issue tracker just mentio
| |
| 61 // https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/8504 730/ | 61 // https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/8504 730/ |
| 62 if (callback) | 62 if (callback) |
| 63 ext.backgroundPage.sendMessage(message, callback); | 63 ext.backgroundPage.sendMessage(message, callback); |
| 64 else | 64 else |
| 65 ext.backgroundPage.sendMessage(message); | 65 ext.backgroundPage.sendMessage(message); |
| 66 }; | 66 }; |
| 67 } | 67 } |
| 68 | 68 |
| 69 var getDocLink = wrapper({type: "app.get", what: "doclink"}, "link"); | 69 var getDocLink = wrapper({type: "app.get", what: "doclink"}, "link"); |
| 70 var getInfo = wrapper({type: "app.get"}, "what"); | 70 var getInfo = wrapper({type: "app.get"}, "what"); |
| (...skipping 662 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 733 onFilterMessage(message.action, message.args[0]); | 733 onFilterMessage(message.action, message.args[0]); |
| 734 break; | 734 break; |
| 735 case "prefs.respond": | 735 case "prefs.respond": |
| 736 onPrefMessage(message.action, message.args[0]); | 736 onPrefMessage(message.action, message.args[0]); |
| 737 break; | 737 break; |
| 738 case "subscriptions.respond": | 738 case "subscriptions.respond": |
| 739 onSubscriptionMessage(message.action, message.args[0]); | 739 onSubscriptionMessage(message.action, message.args[0]); |
| 740 break; | 740 break; |
| 741 } | 741 } |
| 742 }); | 742 }); |
| LEFT | RIGHT |