├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── dist ├── document.currentScript.js └── document.currentScript.min.js ├── karma.conf-ci.js ├── karma.conf.js ├── package.json ├── src ├── end.js ├── main.js └── start.js └── test ├── index.html └── tests.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesMGreene/document.currentScript/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesMGreene/document.currentScript/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesMGreene/document.currentScript/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesMGreene/document.currentScript/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesMGreene/document.currentScript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesMGreene/document.currentScript/HEAD/README.md -------------------------------------------------------------------------------- /dist/document.currentScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesMGreene/document.currentScript/HEAD/dist/document.currentScript.js -------------------------------------------------------------------------------- /dist/document.currentScript.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesMGreene/document.currentScript/HEAD/dist/document.currentScript.min.js -------------------------------------------------------------------------------- /karma.conf-ci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesMGreene/document.currentScript/HEAD/karma.conf-ci.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesMGreene/document.currentScript/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesMGreene/document.currentScript/HEAD/package.json -------------------------------------------------------------------------------- /src/end.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesMGreene/document.currentScript/HEAD/src/end.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesMGreene/document.currentScript/HEAD/src/main.js -------------------------------------------------------------------------------- /src/start.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | 3 | -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesMGreene/document.currentScript/HEAD/test/index.html -------------------------------------------------------------------------------- /test/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesMGreene/document.currentScript/HEAD/test/tests.js --------------------------------------------------------------------------------