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