diff options
author | Einar Egilsson <einar@einaregilsson.com> | 2016-05-31 14:53:32 +0200 |
---|---|---|
committer | Einar Egilsson <einar@einaregilsson.com> | 2016-05-31 14:53:32 +0200 |
commit | 44dfb4ec3c4585454ebfbb7b30fe7774c5c6a877 (patch) | |
tree | f37394844b1b1960d77e6dd1ac6275d23415cc6e /js/popup-scriptload.js | |
parent | 77f60e0af6c36009a9bb6edbea04aeace9478637 (diff) |
Mostly Firefox compatible
Diffstat (limited to 'js/popup-scriptload.js')
-rw-r--r-- | js/popup-scriptload.js | 13 |
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"); -} |