├── .editorconfig ├── .ember-cli ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .template-lintrc.js ├── .travis.yml ├── .watchmanconfig ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── addon ├── .gitkeep ├── components │ ├── component.js │ └── link-component.js └── mixins │ └── touch-action.js ├── app ├── .gitkeep └── initializers │ └── ember-hammertime.js ├── config ├── ember-cli-toolbelts.json ├── ember-try.js └── environment.js ├── ember-cli-build.js ├── htmlbars-plugins └── touch-action.js ├── index.js ├── package.json ├── testem.js ├── tests ├── acceptance │ └── index-test.js ├── dummy │ ├── app │ │ ├── app.js │ │ ├── components │ │ │ ├── .gitkeep │ │ │ ├── click-component.js │ │ │ └── input-component.js │ │ ├── controllers │ │ │ ├── .gitkeep │ │ │ └── application.js │ │ ├── helpers │ │ │ └── .gitkeep │ │ ├── index.html │ │ ├── models │ │ │ └── .gitkeep │ │ ├── resolver.js │ │ ├── router.js │ │ ├── routes │ │ │ └── .gitkeep │ │ ├── styles │ │ │ └── app.css │ │ └── templates │ │ │ ├── application.hbs │ │ │ └── components │ │ │ ├── .gitkeep │ │ │ ├── click-component.hbs │ │ │ └── input-component.hbs │ ├── config │ │ ├── environment.js │ │ ├── optional-features.json │ │ └── targets.js │ └── public │ │ ├── crossdomain.xml │ │ └── robots.txt ├── helpers │ ├── destroy-app.js │ ├── module-for-acceptance.js │ ├── resolver.js │ └── start-app.js ├── index.html ├── test-helper.js └── unit │ └── .gitkeep ├── vendor └── .gitkeep └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/.editorconfig -------------------------------------------------------------------------------- /.ember-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/.ember-cli -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/.npmignore -------------------------------------------------------------------------------- /.template-lintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/.template-lintrc.js -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/.travis.yml -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/README.md -------------------------------------------------------------------------------- /addon/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/components/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/addon/components/component.js -------------------------------------------------------------------------------- /addon/components/link-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/addon/components/link-component.js -------------------------------------------------------------------------------- /addon/mixins/touch-action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/addon/mixins/touch-action.js -------------------------------------------------------------------------------- /app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/initializers/ember-hammertime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/app/initializers/ember-hammertime.js -------------------------------------------------------------------------------- /config/ember-cli-toolbelts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/config/ember-cli-toolbelts.json -------------------------------------------------------------------------------- /config/ember-try.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/config/ember-try.js -------------------------------------------------------------------------------- /config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/config/environment.js -------------------------------------------------------------------------------- /ember-cli-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/ember-cli-build.js -------------------------------------------------------------------------------- /htmlbars-plugins/touch-action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/htmlbars-plugins/touch-action.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/package.json -------------------------------------------------------------------------------- /testem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/testem.js -------------------------------------------------------------------------------- /tests/acceptance/index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/tests/acceptance/index-test.js -------------------------------------------------------------------------------- /tests/dummy/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/tests/dummy/app/app.js -------------------------------------------------------------------------------- /tests/dummy/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/components/click-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/tests/dummy/app/components/click-component.js -------------------------------------------------------------------------------- /tests/dummy/app/components/input-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/tests/dummy/app/components/input-component.js -------------------------------------------------------------------------------- /tests/dummy/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/controllers/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/tests/dummy/app/controllers/application.js -------------------------------------------------------------------------------- /tests/dummy/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/tests/dummy/app/index.html -------------------------------------------------------------------------------- /tests/dummy/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/tests/dummy/app/resolver.js -------------------------------------------------------------------------------- /tests/dummy/app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/tests/dummy/app/router.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/styles/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/templates/application.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/tests/dummy/app/templates/application.hbs -------------------------------------------------------------------------------- /tests/dummy/app/templates/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/templates/components/click-component.hbs: -------------------------------------------------------------------------------- 1 | {{yield}} 2 | -------------------------------------------------------------------------------- /tests/dummy/app/templates/components/input-component.hbs: -------------------------------------------------------------------------------- 1 | {{yield}} 2 | -------------------------------------------------------------------------------- /tests/dummy/config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/tests/dummy/config/environment.js -------------------------------------------------------------------------------- /tests/dummy/config/optional-features.json: -------------------------------------------------------------------------------- 1 | { 2 | "jquery-integration": false 3 | } 4 | -------------------------------------------------------------------------------- /tests/dummy/config/targets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/tests/dummy/config/targets.js -------------------------------------------------------------------------------- /tests/dummy/public/crossdomain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/tests/dummy/public/crossdomain.xml -------------------------------------------------------------------------------- /tests/dummy/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/helpers/destroy-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/tests/helpers/destroy-app.js -------------------------------------------------------------------------------- /tests/helpers/module-for-acceptance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/tests/helpers/module-for-acceptance.js -------------------------------------------------------------------------------- /tests/helpers/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/tests/helpers/resolver.js -------------------------------------------------------------------------------- /tests/helpers/start-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/tests/helpers/start-app.js -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/tests/test-helper.js -------------------------------------------------------------------------------- /tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/html-next/ember-hammertime/HEAD/yarn.lock --------------------------------------------------------------------------------