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

Unified Diff: new-options.js

Issue 29555782: Issue 5701 - Inconsistent forum links and DNT link (Closed)
Patch Set: Fallback Created Sept. 25, 2017, 4:48 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« messageResponder.js ('K') | « new-options.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: new-options.js
===================================================================
--- a/new-options.js
+++ b/new-options.js
@@ -866,6 +866,33 @@
setLinks("enable-aa-description", link);
});
+ // Get browser specific links
+ ext.backgroundPage.sendMessage({
+ type: "app.get",
+ what: "browserInfo"
+ },
+ ({platform, application}) =>
+ {
+ if (platform == "chromium" && application == "opera")
+ application = "opera";
+ else if (platform == "gecko")
+ application = "firefox";
+ else if (application == "edge")
+ application = "edge";
+ else
+ application = "chrome";
+
+ getDocLink(application + "_support", url =>
+ {
+ setLinks("visit-forum", url);
+ });
+
+ getDocLink("adblock_plus_" + application + "_dnt", url =>
+ {
+ setLinks("dnt", url);
+ });
+ });
+
// Advanced tab
let customize = document.querySelectorAll("#customize li[data-pref]");
customize = Array.prototype.map.call(customize, (checkbox) =>
@@ -914,10 +941,6 @@
{
setLinks("report-bug", link);
});
- getDocLink("reporter_other_link", (link) =>
- {
- setLinks("report-forum", link);
- });
getDocLink("social_twitter", (link) =>
{
E("twitter").setAttribute("href", link);
« messageResponder.js ('K') | « new-options.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld