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

Side by Side Diff: options/about.js

Issue 8560083: adblockplusopera: Port UI code from Chrome (Closed)
Patch Set: Created Oct. 19, 2012, 4:04 p.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 | « options.js ('k') | options/cssDisplay.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 aboutParent = document.getElementById('about');
2
3 var title = document.createElement('h2');
4 title.appendChild(document.createTextNode(translate.get('about')));
5 aboutParent.appendChild(title);
6
7 var link = document.createElement('a');
8 link.href = 'about.html';
9 link.appendChild(document.createTextNode(translate.get('about_text')));
10 var text = document.createElement('p');
11 text.appendChild(link);
12 aboutParent.appendChild(text);
OLDNEW
« 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