Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dustinfarris/bf7b00a0ba3b2e0cf0c1ace1abcaeb63 to your computer and use it in GitHub Desktop.
Save dustinfarris/bf7b00a0ba3b2e0cf0c1ace1abcaeb63 to your computer and use it in GitHub Desktop.
Bug
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
tempValue: '',
actions: {
changeValue: function(value) {
this.set('tempValue', '123');
console.log('got', value);
console.log('setting tempValue', this.get('tempValue'));
}
}
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
<input type="text" value={{tempValue}} oninput={{action "changeValue" value="target.value"}}>
<br>
{{tempValue}}
<br>
{
"version": "0.9.3",
"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.6.0",
"ember-data": "2.6.1",
"ember-template-compiler": "2.6.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment