Skip to content

Instantly share code, notes, and snippets.

@gogogarrett
Last active November 3, 2015 22:23
Show Gist options
  • Save gogogarrett/9e9a09922d70e74ea2c0 to your computer and use it in GitHub Desktop.
Save gogogarrett/9e9a09922d70e74ea2c0 to your computer and use it in GitHub Desktop.
xample
import Ember from 'ember';
export default Ember.Controller.extend({
appName:'Ember Twiddle',
actions: {
awesomeRowMouseEnterAction: function() {
alert("this is a MouseEnter from the application controller!!");
}
}
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{outlet}}
{{awesome-row mouseEnterAction=(action 'awesomeRowMouseEnterAction')}}
<br>
<br>
import Ember from 'ember';
export default Ember.Component.extend({
data: ['x', 'o', ' '],
click: function() {
alert('abc');
},
mouseEnter: function() {
this.attrs.mouseEnterAction();
}
});
{{#each data as |col|}}
{{col}}
{{/each}}
{
"version": "0.4.16",
"EmberENV": {
"FEATURES": {}
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/2.1.0/ember.debug.js",
"ember-data": "https://cdnjs.cloudflare.com/ajax/libs/ember-data.js/2.1.0/ember-data.js",
"ember-template-compiler": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/2.1.0/ember-template-compiler.js"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment