Left: | ||
Right: |
LEFT | RIGHT |
---|---|
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 1183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1194 } | 1194 } |
1195 | 1195 |
1196 function updateNextButton() | 1196 function updateNextButton() |
1197 { | 1197 { |
1198 let nextButton = document.documentElement.getButton("next"); | 1198 let nextButton = document.documentElement.getButton("next"); |
1199 if (!nextButton) | 1199 if (!nextButton) |
1200 return; | 1200 return; |
1201 | 1201 |
1202 if (document.documentElement.currentPage.id == "commentPage") | 1202 if (document.documentElement.currentPage.id == "commentPage") |
1203 { | 1203 { |
1204 if (!nextButton.hasAttribute("_origLabel")) | 1204 if (!("_origLabel" in nextButton)) |
1205 { | 1205 { |
1206 nextButton._origLabel = nextButton.label; | 1206 nextButton._origLabel = nextButton.label; |
1207 nextButton._origAccessKey = nextButton.accessKey; | 1207 nextButton._origAccessKey = nextButton.accessKey; |
1208 [nextButton.label, nextButton.accessKey] = Utils.splitLabel(document.docum entElement.getAttribute("sendbuttonlabel")); | 1208 [nextButton.label, nextButton.accessKey] = Utils.splitLabel(document.docum entElement.getAttribute("sendbuttonlabel")); |
1209 } | 1209 } |
1210 } | 1210 } |
1211 else | 1211 else |
1212 { | 1212 { |
1213 if (nextButton.hasAttribute("_origLabel")) | 1213 if ("_origLabel" in nextButton) |
1214 { | 1214 { |
1215 nextButton.label = nextButton._origLabel; | 1215 nextButton.label = nextButton._origLabel; |
1216 nextButton.accessKey = nextButton._origAccessKey; | 1216 nextButton.accessKey = nextButton._origAccessKey; |
1217 delete nextButton._origLabel; | 1217 delete nextButton._origLabel; |
Felix Dahlke
2013/07/03 15:20:47
Seems like an unrelated change, what's wrong with
Wladimir Palant
2013/07/09 12:10:59
Yes, this is somewhat unrelated. However, using an
| |
1218 delete nextButton._origAccessKey; | 1218 delete nextButton._origAccessKey; |
1219 } | 1219 } |
1220 } | 1220 } |
1221 } | 1221 } |
1222 | 1222 |
1223 function initDataCollectorPage() | 1223 function initDataCollectorPage() |
1224 { | 1224 { |
1225 document.documentElement.canAdvance = false; | 1225 document.documentElement.canAdvance = false; |
1226 | 1226 |
1227 let totalSteps = dataCollectors.length; | 1227 let totalSteps = dataCollectors.length; |
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1560 | 1560 |
1561 function censorURL(url) | 1561 function censorURL(url) |
1562 { | 1562 { |
1563 return url.replace(/([?;&\/#][^?;&\/#]+?=)[^?;&\/#]+/g, "$1*"); | 1563 return url.replace(/([?;&\/#][^?;&\/#]+?=)[^?;&\/#]+/g, "$1*"); |
1564 } | 1564 } |
1565 | 1565 |
1566 function encodeHTML(str) | 1566 function encodeHTML(str) |
1567 { | 1567 { |
1568 return str.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">"). replace(/"/g, """); | 1568 return str.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">"). replace(/"/g, """); |
1569 } | 1569 } |
LEFT | RIGHT |