├── .bowerrc ├── .gitignore ├── LICENSE.md ├── README.md ├── angular-hammer-logo.png ├── angular.hammer.js ├── angular.hammer.min.js ├── angular.hammer.min.js.map ├── bower.json ├── doc ├── angular.hammer.js.html ├── index.html ├── module-hmTouchEvents.html ├── scripts │ ├── linenumber.js │ └── prettify │ │ ├── Apache-License-2.0.txt │ │ ├── lang-css.js │ │ └── prettify.js └── styles │ ├── jsdoc-default.css │ ├── prettify-jsdoc.css │ └── prettify-tomorrow.css ├── examples ├── browserify │ ├── custom.html │ ├── default.html │ ├── dragging.html │ └── index.js ├── raw │ ├── custom.html │ ├── default.html │ ├── dragging.html │ ├── pan.html │ └── tap.html ├── requirejs │ ├── custom.html │ ├── default.html │ ├── dragging.html │ └── index.js └── webpack │ ├── custom.html │ ├── default.html │ ├── dragging.html │ └── index.js ├── gruntfile.js ├── index.js ├── jsdoc.json ├── package.json └── server.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "examples/lib" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/README.md -------------------------------------------------------------------------------- /angular-hammer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/angular-hammer-logo.png -------------------------------------------------------------------------------- /angular.hammer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/angular.hammer.js -------------------------------------------------------------------------------- /angular.hammer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/angular.hammer.min.js -------------------------------------------------------------------------------- /angular.hammer.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/angular.hammer.min.js.map -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/bower.json -------------------------------------------------------------------------------- /doc/angular.hammer.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/doc/angular.hammer.js.html -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/doc/index.html -------------------------------------------------------------------------------- /doc/module-hmTouchEvents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/doc/module-hmTouchEvents.html -------------------------------------------------------------------------------- /doc/scripts/linenumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/doc/scripts/linenumber.js -------------------------------------------------------------------------------- /doc/scripts/prettify/Apache-License-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/doc/scripts/prettify/Apache-License-2.0.txt -------------------------------------------------------------------------------- /doc/scripts/prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/doc/scripts/prettify/lang-css.js -------------------------------------------------------------------------------- /doc/scripts/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/doc/scripts/prettify/prettify.js -------------------------------------------------------------------------------- /doc/styles/jsdoc-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/doc/styles/jsdoc-default.css -------------------------------------------------------------------------------- /doc/styles/prettify-jsdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/doc/styles/prettify-jsdoc.css -------------------------------------------------------------------------------- /doc/styles/prettify-tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/doc/styles/prettify-tomorrow.css -------------------------------------------------------------------------------- /examples/browserify/custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/examples/browserify/custom.html -------------------------------------------------------------------------------- /examples/browserify/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/examples/browserify/default.html -------------------------------------------------------------------------------- /examples/browserify/dragging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/examples/browserify/dragging.html -------------------------------------------------------------------------------- /examples/browserify/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/examples/browserify/index.js -------------------------------------------------------------------------------- /examples/raw/custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/examples/raw/custom.html -------------------------------------------------------------------------------- /examples/raw/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/examples/raw/default.html -------------------------------------------------------------------------------- /examples/raw/dragging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/examples/raw/dragging.html -------------------------------------------------------------------------------- /examples/raw/pan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/examples/raw/pan.html -------------------------------------------------------------------------------- /examples/raw/tap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/examples/raw/tap.html -------------------------------------------------------------------------------- /examples/requirejs/custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/examples/requirejs/custom.html -------------------------------------------------------------------------------- /examples/requirejs/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/examples/requirejs/default.html -------------------------------------------------------------------------------- /examples/requirejs/dragging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/examples/requirejs/dragging.html -------------------------------------------------------------------------------- /examples/requirejs/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/webpack/custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/examples/webpack/custom.html -------------------------------------------------------------------------------- /examples/webpack/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/examples/webpack/default.html -------------------------------------------------------------------------------- /examples/webpack/dragging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/examples/webpack/dragging.html -------------------------------------------------------------------------------- /examples/webpack/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/gruntfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/index.js -------------------------------------------------------------------------------- /jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/jsdoc.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanMullins/angular-hammer/HEAD/server.js --------------------------------------------------------------------------------