Skip to content

Instantly share code, notes, and snippets.

@noslouch
Created November 29, 2018 16:41
Show Gist options
  • Save noslouch/5b7c48e110b9236a080dc6daa351d148 to your computer and use it in GitHub Desktop.
Save noslouch/5b7c48e110b9236a080dc6daa351d148 to your computer and use it in GitHub Desktop.
event order
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
messages: null,
init() {
this._super(...arguments);
this.set('messages', []);
},
actions: {
log(val) {
this.messages.pushObject(val);
}
}
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
<label>
<input
onclick={{action 'log' 'onclick'}}
onchange={{action 'log' 'onchange'}}
type='checkbox'
/>
click me
</label>
<ul>
{{#each messages as |message|}}
<li>{{message}}</li>
{{/each}}
</ul>
<br>
{
"version": "0.15.1",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js",
"ember": "3.4.3",
"ember-template-compiler": "3.4.3",
"ember-testing": "3.4.3"
},
"addons": {
"ember-data": "3.4.2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment