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

Side by Side Diff: options.js

Issue 29371945: Issue 4802 - Add back compatibility for Microsoft Edge after #4722 removed it (Closed)
Patch Set: Don't touch the buildtools dependency Created Jan. 17, 2017, 5:46 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « options.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 ext.backgroundPage.sendMessage(message, callback); 59 // Edge silently fails when sendMessage is called with a callback
kzar 2017/01/17 06:54:31 Did you file an issue for this with Microsoft? (Or
Oleksandr 2017/01/18 03:08:44 The issue is marked as Fixed, however it is not cl
kzar 2017/01/18 03:48:41 OK well add a link to that issue here and also upd
60 // parameter of undefined, so we work around that here.
61 if (callback)
62 ext.backgroundPage.sendMessage(message, callback);
63 else
64 ext.backgroundPage.sendMessage(message);
60 }; 65 };
61 } 66 }
62 67
63 var getDocLink = wrapper({type: "app.get", what: "doclink"}, "link"); 68 var getDocLink = wrapper({type: "app.get", what: "doclink"}, "link");
64 var getInfo = wrapper({type: "app.get"}, "what"); 69 var getInfo = wrapper({type: "app.get"}, "what");
65 var getPref = wrapper({type: "prefs.get"}, "key"); 70 var getPref = wrapper({type: "prefs.get"}, "key");
66 var togglePref = wrapper({type: "prefs.toggle"}, "key"); 71 var togglePref = wrapper({type: "prefs.toggle"}, "key");
67 var getSubscriptions = wrapper({type: "subscriptions.get"}, 72 var getSubscriptions = wrapper({type: "subscriptions.get"},
68 "downloadable", "special"); 73 "downloadable", "special");
69 var removeSubscription = wrapper({type: "subscriptions.remove"}, "url"); 74 var removeSubscription = wrapper({type: "subscriptions.remove"}, "url");
(...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after
727 onFilterMessage(message.action, message.args[0]); 732 onFilterMessage(message.action, message.args[0]);
728 break; 733 break;
729 case "prefs.respond": 734 case "prefs.respond":
730 onPrefMessage(message.action, message.args[0]); 735 onPrefMessage(message.action, message.args[0]);
731 break; 736 break;
732 case "subscriptions.respond": 737 case "subscriptions.respond":
733 onSubscriptionMessage(message.action, message.args[0]); 738 onSubscriptionMessage(message.action, message.args[0]);
734 break; 739 break;
735 } 740 }
736 }); 741 });
OLDNEW
« no previous file with comments | « options.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld