aboutsummaryrefslogtreecommitdiff
path: root/js/popup-scriptload.js
diff options
context:
space:
mode:
authorEinar Egilsson <einar@einaregilsson.com>2016-05-31 14:53:32 +0200
committerEinar Egilsson <einar@einaregilsson.com>2016-05-31 14:53:32 +0200
commit44dfb4ec3c4585454ebfbb7b30fe7774c5c6a877 (patch)
treef37394844b1b1960d77e6dd1ac6275d23415cc6e /js/popup-scriptload.js
parent77f60e0af6c36009a9bb6edbea04aeace9478637 (diff)
Mostly Firefox compatible
Diffstat (limited to 'js/popup-scriptload.js')
-rw-r--r--js/popup-scriptload.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/js/popup-scriptload.js b/js/popup-scriptload.js
deleted file mode 100644
index bcb5370..0000000
--- a/js/popup-scriptload.js
+++ /dev/null
@@ -1,13 +0,0 @@
-
-//Do it this way to make the Firefox version work with content
-//scripts and all that crap. Will be removed when everything
-//can use the WebExtensions API.
-
-function loadScript(path) {
- document.write('<script src="' + path + '"></script>');
-}
-
-if (typeof chrome !== 'undefined') {
- loadScript("js/angular.min.js");
- loadScript("js/popup.js");
-}