Index: options/about.js |
=================================================================== |
deleted file mode 100644 |
--- a/options/about.js |
+++ /dev/null |
@@ -1,12 +0,0 @@ |
-var aboutParent = document.getElementById('about'); |
- |
-var title = document.createElement('h2'); |
-title.appendChild(document.createTextNode(translate.get('about'))); |
-aboutParent.appendChild(title); |
- |
-var link = document.createElement('a'); |
-link.href = 'about.html'; |
-link.appendChild(document.createTextNode(translate.get('about_text'))); |
-var text = document.createElement('p'); |
-text.appendChild(link); |
-aboutParent.appendChild(text); |