Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: static/js/animation.js

Issue 4661048523096064: Issue 2120 - Add support for animations. (Closed)
Left Patch Set: Use base64 module for the base64 encoding in the inline_file filter. Created April 11, 2015, 2:04 p.m.
Right Patch Set: Addressed feedback. Created April 13, 2015, 9:03 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « filters/inline_file.py ('k') | templates/raw.tmpl » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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
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 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld