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

Unified Diff: options/about.js

Issue 8560083: adblockplusopera: Port UI code from Chrome (Closed)
Patch Set: Created Oct. 19, 2012, 4:04 p.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 | « options.js ('k') | options/cssDisplay.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: options/about.js
===================================================================
deleted file mode 100644
--- a/options/about.js
+++ /dev/null
@@ -1,12 +0,0 @@
-var aboutParent = document.getElementById('about');
-
-var title = document.createElement('h2');
-title.appendChild(document.createTextNode(translate.get('about')));
-aboutParent.appendChild(title);
-
-var link = document.createElement('a');
-link.href = 'about.html';
-link.appendChild(document.createTextNode(translate.get('about_text')));
-var text = document.createElement('p');
-text.appendChild(link);
-aboutParent.appendChild(text);
« no previous file with comments | « options.js ('k') | options/cssDisplay.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld