| Index: updates.js |
| =================================================================== |
| new file mode 100644 |
| --- /dev/null |
| +++ b/updates.js |
| @@ -0,0 +1,47 @@ |
| +/* |
| + * This file is part of Adblock Plus <https://adblockplus.org/>, |
| + * Copyright (C) 2006-present eyeo GmbH |
| + * |
| + * Adblock Plus is free software: you can redistribute it and/or modify |
| + * it under the terms of the GNU General Public License version 3 as |
| + * published by the Free Software Foundation. |
| + * |
| + * Adblock Plus is distributed in the hope that it will be useful, |
| + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| + * GNU General Public License for more details. |
| + * |
| + * You should have received a copy of the GNU General Public License |
| + * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| + */ |
| + |
| +/* globals getDocLink, setLinks, E */ |
| + |
| +"use strict"; |
| + |
| +(function() |
| +{ |
| + function onDOMLoaded() |
| + { |
| + const optionsPageLink = document.querySelector("#options-page-news > a"); |
|
Thomas Greiner
2018/01/10 12:28:21
Coding style: "Use const for constant expressions
martin
2018/01/12 11:15:42
Done.
|
| + optionsPageLink.addEventListener("click", () => |
| + { |
| + browser.runtime.sendMessage( |
| + { |
| + type: "app.open", |
| + what: "options" |
| + } |
| + ); |
| + }); |
| + getDocLink("adblock_browser_ios_store", (url) => |
| + { |
| + E("adblock_browser_ios_store").href = url; |
| + }); |
| + getDocLink("adblock_browser_android_store", (url) => |
| + { |
| + E("adblock_browser_android_store").href = url; |
| + }); |
| + setLinks("adblock-browser-text", "https://adblockbrowser.org"); |
|
Thomas Greiner
2017/12/11 12:11:10
The second argument is expected to be an array.
S
Thomas Greiner
2017/12/11 12:11:11
Again, let's not hardcode any links in the extensi
martin
2017/12/14 11:25:16
Couldn't find a doc-link to "https://adblockbrowse
Thomas Greiner
2017/12/14 13:36:26
The usual process is to update the spec and then i
martin
2017/12/19 12:59:52
I `getDocLink`-ed this. It's currently not working
Thomas Greiner
2018/01/10 12:28:22
Great, thanks.
|
| + } |
| + document.addEventListener("DOMContentLoaded", onDOMLoaded, false); |
| +}()); |