├── .gitignore ├── LICENSE ├── README.MD ├── dist └── swiped-events.min.js ├── docs └── example.gif ├── gulpfile.js ├── index.html ├── package.json ├── server └── dev-server.js └── src ├── swiped-events.d.ts └── swiped-events.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .vscode -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/swiped-events/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/swiped-events/HEAD/README.MD -------------------------------------------------------------------------------- /dist/swiped-events.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/swiped-events/HEAD/dist/swiped-events.min.js -------------------------------------------------------------------------------- /docs/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/swiped-events/HEAD/docs/example.gif -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/swiped-events/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/swiped-events/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/swiped-events/HEAD/package.json -------------------------------------------------------------------------------- /server/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/swiped-events/HEAD/server/dev-server.js -------------------------------------------------------------------------------- /src/swiped-events.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/swiped-events/HEAD/src/swiped-events.d.ts -------------------------------------------------------------------------------- /src/swiped-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/john-doherty/swiped-events/HEAD/src/swiped-events.js --------------------------------------------------------------------------------