├── .bowerrc ├── .editorconfig ├── .ember-cli ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .jshintrc ├── .npmignore ├── .template-lintrc.js ├── .travis.yml ├── .watchmanconfig ├── LICENSE ├── LICENSE.md ├── README.md ├── addon ├── .gitkeep ├── action-proxy.js ├── helpers │ └── send.js └── inbound-actions.js ├── app ├── .gitkeep └── helpers │ └── send.js ├── config ├── ember-try.js └── environment.js ├── ember-cli-build.js ├── index.js ├── package.json ├── testem.js ├── tests ├── .jshintrc ├── acceptance │ └── reset-form-test.js ├── dummy │ ├── .jshintrc │ ├── app │ │ ├── app.js │ │ ├── components │ │ │ ├── address-form.js │ │ │ └── name-form.js │ │ ├── controllers │ │ │ └── index.js │ │ ├── helpers │ │ │ └── .gitkeep │ │ ├── index.html │ │ ├── models │ │ │ └── .gitkeep │ │ ├── resolver.js │ │ ├── router.js │ │ ├── routes │ │ │ └── .gitkeep │ │ ├── styles │ │ │ └── app.css │ │ └── templates │ │ │ ├── another.hbs │ │ │ ├── application.hbs │ │ │ ├── components │ │ │ ├── address-form.hbs │ │ │ └── name-form.hbs │ │ │ └── index.hbs │ ├── config │ │ ├── environment.js │ │ ├── optional-features.json │ │ └── targets.js │ └── public │ │ ├── crossdomain.xml │ │ └── robots.txt ├── helpers │ ├── .gitkeep │ └── resolver.js ├── index.html ├── test-helper.js └── unit │ └── .gitkeep ├── vendor └── .gitkeep └── yarn.lock /.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/.bowerrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/.editorconfig -------------------------------------------------------------------------------- /.ember-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/.ember-cli -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/.npmignore -------------------------------------------------------------------------------- /.template-lintrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | extends: 'recommended' 5 | }; 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/.travis.yml -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/README.md -------------------------------------------------------------------------------- /addon/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /addon/action-proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/addon/action-proxy.js -------------------------------------------------------------------------------- /addon/helpers/send.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/addon/helpers/send.js -------------------------------------------------------------------------------- /addon/inbound-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/addon/inbound-actions.js -------------------------------------------------------------------------------- /app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/helpers/send.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/app/helpers/send.js -------------------------------------------------------------------------------- /config/ember-try.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/config/ember-try.js -------------------------------------------------------------------------------- /config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/config/environment.js -------------------------------------------------------------------------------- /ember-cli-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/ember-cli-build.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | name: require('./package').name 5 | }; 6 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/package.json -------------------------------------------------------------------------------- /testem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/testem.js -------------------------------------------------------------------------------- /tests/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/tests/.jshintrc -------------------------------------------------------------------------------- /tests/acceptance/reset-form-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/tests/acceptance/reset-form-test.js -------------------------------------------------------------------------------- /tests/dummy/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/tests/dummy/.jshintrc -------------------------------------------------------------------------------- /tests/dummy/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/tests/dummy/app/app.js -------------------------------------------------------------------------------- /tests/dummy/app/components/address-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/tests/dummy/app/components/address-form.js -------------------------------------------------------------------------------- /tests/dummy/app/components/name-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/tests/dummy/app/components/name-form.js -------------------------------------------------------------------------------- /tests/dummy/app/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/tests/dummy/app/controllers/index.js -------------------------------------------------------------------------------- /tests/dummy/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/tests/dummy/app/index.html -------------------------------------------------------------------------------- /tests/dummy/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/tests/dummy/app/resolver.js -------------------------------------------------------------------------------- /tests/dummy/app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/tests/dummy/app/router.js -------------------------------------------------------------------------------- /tests/dummy/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/styles/app.css: -------------------------------------------------------------------------------- 1 | html, body { 2 | margin: 20px; 3 | } 4 | -------------------------------------------------------------------------------- /tests/dummy/app/templates/another.hbs: -------------------------------------------------------------------------------- 1 | just an empty page 2 | -------------------------------------------------------------------------------- /tests/dummy/app/templates/application.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/tests/dummy/app/templates/application.hbs -------------------------------------------------------------------------------- /tests/dummy/app/templates/components/address-form.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/tests/dummy/app/templates/components/address-form.hbs -------------------------------------------------------------------------------- /tests/dummy/app/templates/components/name-form.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/tests/dummy/app/templates/components/name-form.hbs -------------------------------------------------------------------------------- /tests/dummy/app/templates/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/tests/dummy/app/templates/index.hbs -------------------------------------------------------------------------------- /tests/dummy/config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/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/GavinJoyce/ember-component-inbound-actions/HEAD/tests/dummy/config/targets.js -------------------------------------------------------------------------------- /tests/dummy/public/crossdomain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/tests/dummy/public/crossdomain.xml -------------------------------------------------------------------------------- /tests/dummy/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/helpers/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/tests/helpers/resolver.js -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/tests/test-helper.js -------------------------------------------------------------------------------- /tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinJoyce/ember-component-inbound-actions/HEAD/yarn.lock --------------------------------------------------------------------------------