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

Unified Diff: common/copyright.js

Issue 8493027: Acquired Opera AdBlock code (Closed)
Patch Set: Created Oct. 8, 2012, 5:58 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « common/back.js ('k') | common/donate.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: common/copyright.js
===================================================================
new file mode 100644
--- /dev/null
+++ b/common/copyright.js
@@ -0,0 +1,11 @@
+var copyParent = document.getElementById('copyright');
+
+var link = document.createElement('a');
+link.setAttribute('href', translate.get('ext_mailto'));
+link.appendChild(document.createTextNode(translate.get('ext_author')));
+
+var element = document.createElement('span');
+element.appendChild(document.createTextNode(translate.get('ext_name') + ' - 2011-2012 © '));
+element.appendChild(link);
+
+copyParent.appendChild(element);
« 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