├── .gitignore ├── LICENSE ├── README.md ├── dist ├── scopedQuerySelectorShim.js └── scopedQuerySelectorShim.min.js ├── gruntfile.js ├── index.js ├── karma.conf.js ├── package.json ├── src └── scopedQuerySelectorShim.js └── test └── testShim.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /misc 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/scopedQuerySelectorShim/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/scopedQuerySelectorShim/HEAD/README.md -------------------------------------------------------------------------------- /dist/scopedQuerySelectorShim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/scopedQuerySelectorShim/HEAD/dist/scopedQuerySelectorShim.js -------------------------------------------------------------------------------- /dist/scopedQuerySelectorShim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/scopedQuerySelectorShim/HEAD/dist/scopedQuerySelectorShim.min.js -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/scopedQuerySelectorShim/HEAD/gruntfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/scopedQuerySelectorShim.js'); 2 | -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/scopedQuerySelectorShim/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/scopedQuerySelectorShim/HEAD/package.json -------------------------------------------------------------------------------- /src/scopedQuerySelectorShim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/scopedQuerySelectorShim/HEAD/src/scopedQuerySelectorShim.js -------------------------------------------------------------------------------- /test/testShim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazd/scopedQuerySelectorShim/HEAD/test/testShim.js --------------------------------------------------------------------------------