Skip to content

Instantly share code, notes, and snippets.

@piotrpalek
Created October 4, 2016 19: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 piotrpalek/e265a6cdc6e56743faf032f79dea4d09 to your computer and use it in GitHub Desktop.
Save piotrpalek/e265a6cdc6e56743faf032f79dea4d09 to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});
<h1>Welcome to {{appName}}</h1>
<br>
<h2>selectValue: {{selectValue}}</h2>
<br>
{{my-component didUpdateSelect=(action (mut selectValue))}}
<br>
<br>
<select onchange={{action didUpdateSelect value="target.value"}}>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">🌲</option>
</select>
{
"version": "0.10.5",
"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.8.0",
"ember-data": "2.8.0",
"ember-template-compiler": "2.8.0",
"ember-testing": "2.8.0"
},
"addons": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment