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

Side by Side Diff: about/extension.js

Issue 8493027: Acquired Opera AdBlock code (Closed)
Patch Set: Created Oct. 2, 2012, 1:15 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
OLDNEW
(Empty)
1 var extensionParent = document.getElementById('extension');
2
3 var googlePlus = document.createElement('a');
4 googlePlus.setAttribute('href', 'https://plus.google.com/u/0/1000302646080597609 55/');
5 var googlePlusLogo = document.createElement('img');
6 googlePlusLogo.setAttribute('src', '/images/googlePlus.png');
7 googlePlus.appendChild(googlePlusLogo);
8
9 var title = document.createElement('h2');
10 title.appendChild(document.createTextNode(translate.get('about_ext') + ' '));
11 title.appendChild(googlePlus);
12 extensionParent.appendChild(title);
13
14 var text = document.createElement('p');
15 text.appendChild(document.createTextNode(translate.get('about_ext_text')));
16 extensionParent.appendChild(text);
OLDNEW
« no previous file with comments | « about/author.js ('k') | about/license.js » ('j') | files/background.js » ('J')

Powered by Google App Engine
This is Rietveld