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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 setLinks("acceptableAdsExplanation", Utils.getDocLink("acceptable_ads_criter
ia"), openFilters); | 56 setLinks("acceptableAdsExplanation", Utils.getDocLink("acceptable_ads_criter
ia"), openFilters); |
57 setLinks("share-headline", Utils.getDocLink("contribute")); | 57 setLinks("share-headline", Utils.getDocLink("contribute")); |
58 | 58 |
59 // Show warning if data corruption was detected | 59 // Show warning if data corruption was detected |
60 if (typeof backgroundPage != "undefined" && backgroundPage.seenDataCorruptio
n) | 60 if (typeof backgroundPage != "undefined" && backgroundPage.seenDataCorruptio
n) |
61 { | 61 { |
62 E("dataCorruptionWarning").removeAttribute("hidden"); | 62 E("dataCorruptionWarning").removeAttribute("hidden"); |
63 setLinks("dataCorruptionWarning", Utils.getDocLink("knownIssuesChrome_filt
erstorage")); | 63 setLinks("dataCorruptionWarning", Utils.getDocLink("knownIssuesChrome_filt
erstorage")); |
64 } | 64 } |
65 | 65 |
66 // Show warning if Safari < 6 | 66 // Show warning if Safari version isn't supported |
67 var info = require("info"); | 67 var info = require("info"); |
68 if (info.platform == "safari" && Services.vc.compare(info.platformVersion, "
6.0") < 0) | 68 if (info.platform == "safari" && ( |
| 69 Services.vc.compare(info.platformVersion, "6.0") < 0 || // beforeload br
eaks websites in Safari 5 |
| 70 Services.vc.compare(info.platformVersion, "6.1") == 0 || // extensions ar
e broken in 6.1 and 7.0 |
| 71 Services.vc.compare(info.platformVersion, "7.0") == 0 |
| 72 )) |
69 E("legacySafariWarning").removeAttribute("hidden"); | 73 E("legacySafariWarning").removeAttribute("hidden"); |
70 | 74 |
71 // Set up feature buttons linked to subscriptions | 75 // Set up feature buttons linked to subscriptions |
72 featureSubscriptions.forEach(setToggleSubscriptionButton); | 76 featureSubscriptions.forEach(setToggleSubscriptionButton); |
73 var filterListener = function(action) | 77 var filterListener = function(action) |
74 { | 78 { |
75 if (/^subscription\.(added|removed|disabled)$/.test(action)) | 79 if (/^subscription\.(added|removed|disabled)$/.test(action)) |
76 { | 80 { |
77 for (var i = 0; i < featureSubscriptions.length; i++) | 81 for (var i = 0; i < featureSubscriptions.length; i++) |
78 { | 82 { |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 { | 243 { |
240 var button = E("toggle-" + feature); | 244 var button = E("toggle-" + feature); |
241 if (isEnabled) | 245 if (isEnabled) |
242 button.classList.remove("off"); | 246 button.classList.remove("off"); |
243 else | 247 else |
244 button.classList.add("off"); | 248 button.classList.add("off"); |
245 } | 249 } |
246 | 250 |
247 document.addEventListener("DOMContentLoaded", onDOMLoaded, false); | 251 document.addEventListener("DOMContentLoaded", onDOMLoaded, false); |
248 })(); | 252 })(); |
OLD | NEW |