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

Side by Side Diff: about/translators.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 transParent = document.getElementById('translators');
2
3 var title = document.createElement('h2');
4 title.appendChild(document.createTextNode(translate.get('about_translators')));
5 transParent.appendChild(title);
6
7 for(i in translators) {
8 var text = document.createElement('p');
9 text.appendChild(document.createTextNode(translate.get(i) + ' - ' + tran slators[i]));
10 transParent.appendChild(text);
11 }
OLDNEW
« no previous file with comments | « about/thanks.js ('k') | common/back.js » ('j') | files/background.js » ('J')

Powered by Google App Engine
This is Rietveld