LEFT | RIGHT |
| 1 /* |
| 2 * This file is part of the Adblock Plus website, |
| 3 * Copyright (C) 2006-2015 Eyeo GmbH |
| 4 * |
| 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 |
| 7 * published by the Free Software Foundation. |
| 8 * |
| 9 * Adblock Plus is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 * GNU General Public License for more details. |
| 13 * |
| 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/>. |
| 16 */ |
| 17 |
1 if (typeof window.addEventListener != "undefined") { | 18 if (typeof window.addEventListener != "undefined") { |
2 window.addEventListener("load", initAnimations, false); | 19 window.addEventListener("load", initAnimations, false); |
3 document.addEventListener("click", loadAnimation, false); | 20 document.addEventListener("click", loadAnimation, false); |
4 } | 21 } |
5 | 22 |
6 var ns = "https://adblockplus.org/animation"; | 23 var ns = "https://adblockplus.org/animation"; |
7 var loadPrefix = "animations/"; | 24 var loadPrefix = "animations/"; |
8 var loadSuffix = ".xml"; | 25 var loadSuffix = ".xml"; |
9 | 26 |
10 function initAnimations() { | 27 function initAnimations() { |
11 var list = document.getElementsByTagNameNS(ns, "animation"); | 28 var list = document.getElementsByTagNameNS(ns, "animation"); |
12 if (list.length == 0) | 29 if (list.length == 0) |
13 list = document.getElementsByTagName("animation"); // HTML mode, Anwiki | 30 list = document.getElementsByTagName("animation"); // HTML mode, Anwiki |
14 for (var i = 0; i < list.length; i++) { | 31 for (var i = 0; i < list.length; i++) { |
15 var node = list[i]; | 32 var node = list[i]; |
16 if (!node.hasAttribute("name") || !node.hasAttribute("label")) | 33 if (!node.hasAttribute("name") || !node.hasAttribute("label")) |
17 continue; | 34 continue; |
18 | 35 |
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
323 if (/right/i.test(anchor)) | 340 if (/right/i.test(anchor)) |
324 coords[0] += size[0]; | 341 coords[0] += size[0]; |
325 else if (!/left/i.test(anchor)) | 342 else if (!/left/i.test(anchor)) |
326 coords[0] += Math.round(size[0]/2); | 343 coords[0] += Math.round(size[0]/2); |
327 | 344 |
328 if (/bottom/i.test(anchor)) | 345 if (/bottom/i.test(anchor)) |
329 coords[1] += size[1]; | 346 coords[1] += size[1]; |
330 else if (!/top/i.test(anchor)) | 347 else if (!/top/i.test(anchor)) |
331 coords[1] += Math.round(size[1]/2); | 348 coords[1] += Math.round(size[1]/2); |
332 } | 349 } |
LEFT | RIGHT |