├── .editorconfig ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .travis.yml ├── GruntFile.js ├── LICENSE ├── README.md ├── abbr-touch.js ├── demo.html ├── example.png ├── package.json └── test └── abbr-touch-spec.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyriar/abbr-touch/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyriar/abbr-touch/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyriar/abbr-touch/HEAD/.travis.yml -------------------------------------------------------------------------------- /GruntFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyriar/abbr-touch/HEAD/GruntFile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyriar/abbr-touch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyriar/abbr-touch/HEAD/README.md -------------------------------------------------------------------------------- /abbr-touch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyriar/abbr-touch/HEAD/abbr-touch.js -------------------------------------------------------------------------------- /demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyriar/abbr-touch/HEAD/demo.html -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyriar/abbr-touch/HEAD/example.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyriar/abbr-touch/HEAD/package.json -------------------------------------------------------------------------------- /test/abbr-touch-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tyriar/abbr-touch/HEAD/test/abbr-touch-spec.js --------------------------------------------------------------------------------