├── .gitignore ├── .jshintrc ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bower.json ├── demo └── index.html ├── dist ├── event.js └── event.min.js ├── gulpfile.js ├── karma.conf.js ├── package.json ├── src └── event.js └── test └── eventSpec.js /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | node_modules/ 3 | .DS_Store -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-event/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-event/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-event/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-event/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-event/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-event/HEAD/bower.json -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-event/HEAD/demo/index.html -------------------------------------------------------------------------------- /dist/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-event/HEAD/dist/event.js -------------------------------------------------------------------------------- /dist/event.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-event/HEAD/dist/event.min.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-event/HEAD/gulpfile.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-event/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-event/HEAD/package.json -------------------------------------------------------------------------------- /src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-event/HEAD/src/event.js -------------------------------------------------------------------------------- /test/eventSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular-ui/ui-event/HEAD/test/eventSpec.js --------------------------------------------------------------------------------