OLD | NEW |
(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); |
OLD | NEW |