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

Side by Side Diff: common/back.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 backParent = document.getElementById('back');
2
3 var title = document.createElement('h2');
4 title.appendChild(document.createTextNode(translate.get('preferences') + ' '));
5 backParent.appendChild(title);
6
7 var link = document.createElement('a');
8 link.href = 'options.html';
9 link.appendChild(document.createTextNode(translate.get('to_preferences')));
10 var text = document.createElement('p');
11 text.appendChild(link);
12 backParent.appendChild(text);
OLDNEW
« no previous file with comments | « about/translators.js ('k') | common/copyright.js » ('j') | files/background.js » ('J')

Powered by Google App Engine
This is Rietveld