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

Delta Between Two Patch Sets: popup.js

Issue 29338503: Issue 3823 - Adapt message names used by "Block element" feature for consistency (Closed)
Left Patch Set: Created March 17, 2016, 2:05 p.m.
Right Patch Set: Rebased Created March 19, 2016, 7:41 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « blockElement.postload.js ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details. 12 * GNU General Public License for more details.
13 * 13 *
14 * You should have received a copy of the GNU General Public License 14 * You should have received a copy of the GNU General Public License
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
16 */ 16 */
17 17
18 var backgroundPage = ext.backgroundPage.getWindow(); 18 var backgroundPage = ext.backgroundPage.getWindow();
19 var require = backgroundPage.require; 19 var require = backgroundPage.require;
20 20
21 var Filter = require("filterClasses").Filter; 21 var Filter = require("filterClasses").Filter;
22 var FilterStorage = require("filterStorage").FilterStorage; 22 var FilterStorage = require("filterStorage").FilterStorage;
23 var Prefs = require("prefs").Prefs; 23 var Prefs = require("prefs").Prefs;
24 var checkWhitelisted = require("whitelisting").checkWhitelisted; 24 var checkWhitelisted = require("whitelisting").checkWhitelisted;
25 var getDecodedHostname = require("url").getDecodedHostname; 25 var getDecodedHostname = require("url").getDecodedHostname;
26 var port = require("messaging").port;
27 26
28 var page = null; 27 var page = null;
29 28
30 function onLoad() 29 function onLoad()
31 { 30 {
32 ext.pages.query({active: true, lastFocusedWindow: true}, function(pages) 31 ext.pages.query({active: true, lastFocusedWindow: true}, function(pages)
33 { 32 {
34 page = pages[0]; 33 page = pages[0];
35 34
36 // Mark page as 'local' or 'nohtml' to hide non-relevant elements 35 // Mark page as 'local' or 'nohtml' to hide non-relevant elements
(...skipping 14 matching lines...) Expand all
51 50
52 page.sendMessage({type: "composer.content.getState"}, function(response) 51 page.sendMessage({type: "composer.content.getState"}, function(response)
53 { 52 {
54 if (response && response.active) 53 if (response && response.active)
55 document.body.classList.add("clickhide-active"); 54 document.body.classList.add("clickhide-active");
56 }); 55 });
57 } 56 }
58 }); 57 });
59 58
60 // Attach event listeners 59 // Attach event listeners
61 port.on("composer.ready", onComposerReady); 60 ext.onMessage.addListener(onMessage);
62 document.getElementById("enabled").addEventListener("click", toggleEnabled, fa lse); 61 document.getElementById("enabled").addEventListener("click", toggleEnabled, fa lse);
63 document.getElementById("clickhide").addEventListener("click", activateClickHi de, false); 62 document.getElementById("clickhide").addEventListener("click", activateClickHi de, false);
64 document.getElementById("clickhide-cancel").addEventListener("click", cancelCl ickHide, false); 63 document.getElementById("clickhide-cancel").addEventListener("click", cancelCl ickHide, false);
65 document.getElementById("options").addEventListener("click", function() 64 document.getElementById("options").addEventListener("click", function()
66 { 65 {
67 ext.showOptions(); 66 ext.showOptions();
68 }, false); 67 }, false);
69 68
70 // Set up collapsing of menu items 69 // Set up collapsing of menu items
71 var collapsers = document.getElementsByClassName("collapse"); 70 var collapsers = document.getElementsByClassName("collapse");
72 for (var i = 0; i < collapsers.length; i++) 71 for (var i = 0; i < collapsers.length; i++)
73 { 72 {
74 var collapser = collapsers[i]; 73 var collapser = collapsers[i];
75 collapser.addEventListener("click", toggleCollapse, false); 74 collapser.addEventListener("click", toggleCollapse, false);
76 if (!Prefs[collapser.dataset.option]) 75 if (!Prefs[collapser.dataset.option])
77 document.getElementById(collapser.dataset.collapsable).classList.add("coll apsed"); 76 document.getElementById(collapser.dataset.collapsable).classList.add("coll apsed");
78 } 77 }
79 } 78 }
80 79
81 function onUnload() 80 function onUnload()
82 { 81 {
83 port.off("composer.ready", onComposerReady); 82 ext.onMessage.removeListener(onMessage);
84 } 83 }
85 84
86 function onComposerReady(message, sender) 85 function onMessage(message, sender, callback)
87 { 86 {
88 if (sender.page.id == page.id) 87 if (message.type == "composer.ready" && sender.page.id == page.id)
89 document.body.classList.remove("nohtml"); 88 document.body.classList.remove("nohtml");
90 } 89 }
91 90
92 function toggleEnabled() 91 function toggleEnabled()
93 { 92 {
94 var disabled = document.body.classList.toggle("disabled"); 93 var disabled = document.body.classList.toggle("disabled");
95 if (disabled) 94 if (disabled)
96 { 95 {
97 var host = getDecodedHostname(page.url).replace(/^www\./, ""); 96 var host = getDecodedHostname(page.url).replace(/^www\./, "");
98 var filter = Filter.fromText("@@||" + host + "^$document"); 97 var filter = Filter.fromText("@@||" + host + "^$document");
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 139
141 function toggleCollapse(event) 140 function toggleCollapse(event)
142 { 141 {
143 var collapser = event.currentTarget; 142 var collapser = event.currentTarget;
144 Prefs[collapser.dataset.option] = !Prefs[collapser.dataset.option]; 143 Prefs[collapser.dataset.option] = !Prefs[collapser.dataset.option];
145 collapser.parentNode.classList.toggle("collapsed"); 144 collapser.parentNode.classList.toggle("collapsed");
146 } 145 }
147 146
148 document.addEventListener("DOMContentLoaded", onLoad, false); 147 document.addEventListener("DOMContentLoaded", onLoad, false);
149 window.addEventListener("unload", onUnload, false); 148 window.addEventListener("unload", onUnload, false);
LEFTRIGHT

Powered by Google App Engine
This is Rietveld