Skip to content

Instantly share code, notes, and snippets.

@nem035
Created February 3, 2016 17:02
Show Gist options
  • Save nem035/c23b7af81333ab70c4fb to your computer and use it in GitHub Desktop.
Save nem035/c23b7af81333ab70c4fb to your computer and use it in GitHub Desktop.
<select> example
import Ember from 'ember';
export default Ember.Controller.extend({
appName:'Ember Twiddle',
actions: {
selectOption(option) {
alert(option);
}
}
});
<h1>Welcome to {{appName}}</h1>
<select onchange={{action "selectOption" value='target.value'}} >
<option value="a">A</option>
<option value="b">B</option>
<option value="c">C</option>
</select>
{
"version": "0.5.0",
"EmberENV": {
"FEATURES": {}
},
"options": {
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/2.2.0/ember.debug.js",
"ember-data": "https://cdnjs.cloudflare.com/ajax/libs/ember-data.js/2.2.0/ember-data.js",
"ember-template-compiler": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/2.2.0/ember-template-compiler.js"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment