| Index: include.preload.js |
| =================================================================== |
| --- a/include.preload.js |
| +++ b/include.preload.js |
| @@ -58,11 +58,11 @@ |
| } |
| } |
| -function checkExceptionKey() |
| +function checkSitekey() |
| { |
| var attr = document.documentElement.getAttribute("data-adblockkey"); |
| if (attr) |
| - ext.backgroundPage.sendMessage({type: "add-key-exception", token: attr}); |
| + ext.backgroundPage.sendMessage({type: "add-sitekey", sitekey: attr}); |
|
Wladimir Palant
2014/09/10 18:27:04
IMHO, the parameter name "token" is better left as
Thomas Greiner
2014/09/15 09:24:59
Done.
|
| } |
| function hasInlineURL(element, attribute) |
| @@ -203,6 +203,6 @@ |
| if (document instanceof HTMLDocument) |
| { |
| - checkExceptionKey(); |
| + checkSitekey(); |
| init(document); |
| } |