Skip to content

Instantly share code, notes, and snippets.

@miguelcobain
Created May 19, 2016 12:38
Show Gist options
  • Select an option

  • Save miguelcobain/18828db2da7f02d177a2c4928f3ed156 to your computer and use it in GitHub Desktop.

Select an option

Save miguelcobain/18828db2da7f02d177a2c4928f3ed156 to your computer and use it in GitHub Desktop.
action inheritance
import Ember from 'ember';
import ParentComponent from './my-parent';
export default ParentComponent.extend({
actions: {
anAction() {
this._super(...arguments);
alert('from subclass');
}
}
});
import Ember from 'ember';
export default Ember.Component.extend({
actions: {
anAction() {
alert('from superclass');
}
}
});
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{#my-child}}
Click me
{{/my-child}}
<br>
<br>
<div onclick={{action "anAction"}}>
{{yield}}
</div>
{
"version": "0.8.1",
"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.5.1",
"ember-data": "2.5.2",
"ember-template-compiler": "2.5.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment