Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 /* | 1 /* |
2 * This file is part of the Adblock Plus website, | 2 * This file is part of the Adblock Plus website, |
3 * Copyright (C) 2007-2015 Wladimir Palant | 3 * Copyright (C) 2006-2015 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 |
Sebastian Noack
2015/04/11 14:15:32
Well, this script isn't part of Adblock Plus but o
kzar
2015/04/12 17:01:45
Done.
| |
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/>. |
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
340 if (/right/i.test(anchor)) | 340 if (/right/i.test(anchor)) |
341 coords[0] += size[0]; | 341 coords[0] += size[0]; |
342 else if (!/left/i.test(anchor)) | 342 else if (!/left/i.test(anchor)) |
343 coords[0] += Math.round(size[0]/2); | 343 coords[0] += Math.round(size[0]/2); |
344 | 344 |
345 if (/bottom/i.test(anchor)) | 345 if (/bottom/i.test(anchor)) |
346 coords[1] += size[1]; | 346 coords[1] += size[1]; |
347 else if (!/top/i.test(anchor)) | 347 else if (!/top/i.test(anchor)) |
348 coords[1] += Math.round(size[1]/2); | 348 coords[1] += Math.round(size[1]/2); |
349 } | 349 } |
LEFT | RIGHT |