OLD | NEW |
(Empty) | |
| 1 var authorParent = document.getElementById('author'); |
| 2 |
| 3 var googlePlus = document.createElement('a'); |
| 4 googlePlus.setAttribute('href', 'https://plus.google.com/u/0/1043268721488781177
84/'); |
| 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_author') + ' ')); |
| 11 title.appendChild(googlePlus); |
| 12 authorParent.appendChild(title); |
| 13 |
| 14 var text = document.createElement('p'); |
| 15 text.appendChild(document.createTextNode(translate.get('about_author_text'))); |
| 16 authorParent.appendChild(text); |
OLD | NEW |