├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── REFERENCES.md ├── app └── main.js ├── bower.json ├── dist ├── tappy.js └── tappy.min.js ├── gulpfile.js ├── package.json └── test ├── long.js └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileyjshaw/tappy/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "eqnull": true 3 | } 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileyjshaw/tappy/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileyjshaw/tappy/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileyjshaw/tappy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileyjshaw/tappy/HEAD/README.md -------------------------------------------------------------------------------- /REFERENCES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileyjshaw/tappy/HEAD/REFERENCES.md -------------------------------------------------------------------------------- /app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileyjshaw/tappy/HEAD/app/main.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileyjshaw/tappy/HEAD/bower.json -------------------------------------------------------------------------------- /dist/tappy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileyjshaw/tappy/HEAD/dist/tappy.js -------------------------------------------------------------------------------- /dist/tappy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileyjshaw/tappy/HEAD/dist/tappy.min.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileyjshaw/tappy/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileyjshaw/tappy/HEAD/package.json -------------------------------------------------------------------------------- /test/long.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileyjshaw/tappy/HEAD/test/long.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileyjshaw/tappy/HEAD/test/test.js --------------------------------------------------------------------------------