Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 var aboutParent = document.getElementById('about'); | |
2 | |
3 var title = document.createElement('h2'); | |
4 title.appendChild(document.createTextNode(translate.get('about'))); | |
5 aboutParent.appendChild(title); | |
6 | |
7 var link = document.createElement('a'); | |
8 link.href = 'about.html'; | |
9 link.appendChild(document.createTextNode(translate.get('about_text'))); | |
10 var text = document.createElement('p'); | |
11 text.appendChild(link); | |
12 aboutParent.appendChild(text); | |
OLD | NEW |