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

Side by Side Diff: common/copyright.js

Issue 8493027: Acquired Opera AdBlock code (Closed)
Patch Set: Created Oct. 8, 2012, 5:58 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « common/back.js ('k') | common/donate.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 var copyParent = document.getElementById('copyright');
2
3 var link = document.createElement('a');
4 link.setAttribute('href', translate.get('ext_mailto'));
5 link.appendChild(document.createTextNode(translate.get('ext_author')));
6
7 var element = document.createElement('span');
8 element.appendChild(document.createTextNode(translate.get('ext_name') + ' - 2011 -2012 © '));
9 element.appendChild(link);
10
11 copyParent.appendChild(element);
OLDNEW
« no previous file with comments | « common/back.js ('k') | common/donate.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld