Index: desktop-options.js |
=================================================================== |
--- a/desktop-options.js |
+++ b/desktop-options.js |
@@ -376,6 +376,7 @@ |
collections.filterLists = new Collection([ |
{ |
id: "all-filter-lists-table", |
+ emptyTexts: ["options_filterList_empty"], |
useOriginalTitle: true |
} |
]); |
@@ -883,6 +884,7 @@ |
E("whitelisting-add-button").disabled = !e.target.value; |
}, false); |
+ // General tab |
getDocLink("contribute", (link) => |
{ |
E("contribute").href = link; |
@@ -896,6 +898,12 @@ |
setLinks("dnt", url); |
}); |
+ // Whitelisted tab |
+ getDocLink("whitelist", (link) => |
+ { |
+ setLinks("whitelist-description", link); |
+ }); |
+ |
// Advanced tab |
let customize = document.querySelectorAll("#customize li[data-pref]"); |
customize = Array.prototype.map.call(customize, (checkbox) => |