| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of Adblock Plus <http://adblockplus.org/>, | 2 * This file is part of Adblock Plus <http://adblockplus.org/>, |
| 3 * Copyright (C) 2006-2013 Eyeo GmbH | 3 * Copyright (C) 2006-2013 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 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 { | 30 { |
| 31 // Mark page as local to hide non-relevant elements | 31 // Mark page as local to hide non-relevant elements |
| 32 ext.windows.getLastFocused(function(win) | 32 ext.windows.getLastFocused(function(win) |
| 33 { | 33 { |
| 34 win.getActiveTab(function(tab) | 34 win.getActiveTab(function(tab) |
| 35 { | 35 { |
| 36 if (!/^https?:\/\//.exec(tab.url)) | 36 if (!/^https?:\/\//.exec(tab.url)) |
| 37 document.body.classList.add("local"); | 37 document.body.classList.add("local"); |
| 38 }); | 38 }); |
| 39 }); | 39 }); |
| 40 | 40 |
| 41 // Attach event listeners | 41 // Attach event listeners |
| 42 document.getElementById("enabled").addEventListener("click", toggleEnabled, fa
lse); | 42 document.getElementById("enabled").addEventListener("click", toggleEnabled, fa
lse); |
| 43 document.getElementById("clickhide").addEventListener("click", activateClickHi
de, false); | 43 document.getElementById("clickhide").addEventListener("click", activateClickHi
de, false); |
| 44 document.getElementById("clickhide-cancel").addEventListener("click", cancelCl
ickHide, false); | 44 document.getElementById("clickhide-cancel").addEventListener("click", cancelCl
ickHide, false); |
| 45 document.getElementById("options").addEventListener("click", function() | 45 document.getElementById("options").addEventListener("click", function() |
| 46 { | 46 { |
| 47 openOptions(); | 47 openOptions(); |
| 48 }, false); | 48 }, false); |
| 49 | 49 |
| 50 // Set up collapsing of menu items | 50 // Set up collapsing of menu items |
| 51 var collapsers = document.getElementsByClassName("collapse"); | 51 var collapsers = document.getElementsByClassName("collapse"); |
| 52 for (var i = 0; i < collapsers.length; i++) | 52 for (var i = 0; i < collapsers.length; i++) |
| 53 { | 53 { |
| 54 var collapser = collapsers[i]; | 54 var collapser = collapsers[i]; |
| 55 collapser.addEventListener("click", toggleCollapse, false); | 55 collapser.addEventListener("click", toggleCollapse, false); |
| 56 if (!Prefs[collapser.dataset.option]) | 56 if (!Prefs[collapser.dataset.option]) |
| 57 document.getElementById(collapser.dataset.collapsable).classList.add("coll
apsed"); | 57 document.getElementById(collapser.dataset.collapsable).classList.add("coll
apsed"); |
| 58 } | 58 } |
| 59 | 59 |
| 60 // Ask content script whether clickhide is active. If so, show cancel button. | 60 // Ask content script whether clickhide is active. If so, show cancel button. |
| 61 // If that isn't the case, ask background.html whether it has cached filters.
If so, | 61 // If that isn't the case, ask background.html whether it has cached filters.
If so, |
| 62 // ask the user whether she wants those filters. | 62 // ask the user whether she wants those filters. |
| 63 // Otherwise, we are in default state. | 63 // Otherwise, we are in default state. |
| 64 ext.windows.getLastFocused(function(win) | 64 ext.windows.getLastFocused(function(win) |
| 65 { | 65 { |
| 66 win.getActiveTab(function(t) | 66 win.getActiveTab(function(t) |
| 67 { | 67 { |
| 68 tab = t; | 68 tab = t; |
| 69 document.getElementById("enabled").classList.toggle("off", isWhitelisted(t
ab.url)); | 69 document.getElementById("enabled").classList.toggle("off", isWhitelisted(t
ab.url)); |
| 70 | 70 |
| 71 tab.sendMessage({type: "get-clickhide-state"}, function(response) | 71 tab.sendMessage({type: "get-clickhide-state"}, function(response) |
| 72 { | 72 { |
| 73 document.body.classList.toggle("clickhide-active", response.active); | 73 document.body.classList.toggle("clickhide-active", response && response.
active); |
| 74 }); | 74 }); |
| 75 }); | 75 }); |
| 76 }); | 76 }); |
| 77 } | 77 } |
| 78 window.addEventListener("DOMContentLoaded", init, false); | 78 window.addEventListener("DOMContentLoaded", init, false); |
| 79 | 79 |
| 80 function toggleEnabled() | 80 function toggleEnabled() |
| 81 { | 81 { |
| 82 var enabledButton = document.getElementById("enabled") | 82 var enabledButton = document.getElementById("enabled") |
| 83 var disabled = enabledButton.classList.toggle("off"); | 83 var disabled = enabledButton.classList.toggle("off"); |
| (...skipping 14 matching lines...) Expand all Loading... |
| 98 // Remove any exception rules applying to this URL | 98 // Remove any exception rules applying to this URL |
| 99 var filter = isWhitelisted(tab.url); | 99 var filter = isWhitelisted(tab.url); |
| 100 while (filter) | 100 while (filter) |
| 101 { | 101 { |
| 102 FilterStorage.removeFilter(filter); | 102 FilterStorage.removeFilter(filter); |
| 103 if (filter.subscriptions.length) | 103 if (filter.subscriptions.length) |
| 104 filter.disabled = true; | 104 filter.disabled = true; |
| 105 filter = isWhitelisted(tab.url); | 105 filter = isWhitelisted(tab.url); |
| 106 } | 106 } |
| 107 } | 107 } |
| 108 | 108 |
| 109 refreshIconAndContextMenu(tab); | 109 refreshIconAndContextMenu(tab); |
| 110 } | 110 } |
| 111 | 111 |
| 112 function activateClickHide() | 112 function activateClickHide() |
| 113 { | 113 { |
| 114 document.body.classList.add("clickhide-active"); | 114 document.body.classList.add("clickhide-active"); |
| 115 tab.sendMessage({type: "clickhide-activate"}); | 115 tab.sendMessage({type: "clickhide-activate"}); |
| 116 | 116 |
| 117 // Close the popup after a few seconds, so user doesn't have to | 117 // Close the popup after a few seconds, so user doesn't have to |
| 118 activateClickHide.timeout = window.setTimeout(window.close, 5000); | 118 activateClickHide.timeout = window.setTimeout(window.close, 5000); |
| 119 } | 119 } |
| 120 | 120 |
| 121 function cancelClickHide() | 121 function cancelClickHide() |
| 122 { | 122 { |
| 123 if (activateClickHide.timeout) | 123 if (activateClickHide.timeout) |
| 124 { | 124 { |
| 125 window.clearTimeout(activateClickHide.timeout); | 125 window.clearTimeout(activateClickHide.timeout); |
| 126 activateClickHide.timeout = null; | 126 activateClickHide.timeout = null; |
| 127 } | 127 } |
| 128 document.body.classList.remove("clickhide-active"); | 128 document.body.classList.remove("clickhide-active"); |
| 129 tab.sendMessage({type: "clickhide-deactivate"}); | 129 tab.sendMessage({type: "clickhide-deactivate"}); |
| 130 } | 130 } |
| 131 | 131 |
| 132 function toggleCollapse(event) | 132 function toggleCollapse(event) |
| 133 { | 133 { |
| 134 var collapser = event.currentTarget; | 134 var collapser = event.currentTarget; |
| 135 Prefs[collapser.dataset.option] = !Prefs[collapser.dataset.option]; | 135 Prefs[collapser.dataset.option] = !Prefs[collapser.dataset.option]; |
| 136 collapser.parentNode.classList.toggle("collapsed"); | 136 collapser.parentNode.classList.toggle("collapsed"); |
| 137 } | 137 } |
| OLD | NEW |