├── .gitignore ├── .jshintrc ├── LICENSE ├── README.md ├── custom-event-polyfill.js ├── karma.conf.js ├── package.json └── tests └── customevent.test.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .sass-cache 3 | node_modules 4 | bower_components 5 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krambuhl/custom-event-polyfill/HEAD/.jshintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krambuhl/custom-event-polyfill/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krambuhl/custom-event-polyfill/HEAD/README.md -------------------------------------------------------------------------------- /custom-event-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krambuhl/custom-event-polyfill/HEAD/custom-event-polyfill.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krambuhl/custom-event-polyfill/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krambuhl/custom-event-polyfill/HEAD/package.json -------------------------------------------------------------------------------- /tests/customevent.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krambuhl/custom-event-polyfill/HEAD/tests/customevent.test.js --------------------------------------------------------------------------------