Skip to content

Instantly share code, notes, and snippets.

@arthur5005
Created November 15, 2016 02:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arthur5005/bf22915f9a4f38f4b759d787983d9c89 to your computer and use it in GitHub Desktop.
Save arthur5005/bf22915f9a4f38f4b759d787983d9c89 to your computer and use it in GitHub Desktop.
Foo Send
import Ember from 'ember';
export default Ember.Component.extend({
actions: {
send() {
this.send('onFooSend');
}
}
});
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
actions: {
onFooSend() {
alert('Foo received');
}
}
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{c-foo}}
<br>
<br>
<button {{action "send"}}>Send Action From Foo</button>
{
"version": "0.10.6",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "2.9.0",
"ember-data": "2.9.0",
"ember-template-compiler": "2.9.0",
"ember-testing": "2.9.0"
},
"addons": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment