Skip to content

Instantly share code, notes, and snippets.

@stavarotti
Created September 28, 2015 18:31
Show Gist options
  • Save stavarotti/b6be203d79ec1888d8ba to your computer and use it in GitHub Desktop.
Save stavarotti/b6be203d79ec1888d8ba to your computer and use it in GitHub Desktop.
select element in Ember 2.0 and above.
<select onchange={{action (mut value) value="target.value"}}>
{{#each choices as |choice|}}
<option value={{choice}} selected={{is-equal value choice}}>{{choice}}</option>
{{/each}}
</select>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment