Skip to content

Instantly share code, notes, and snippets.

@JonForest
Created November 7, 2016 17:33
Show Gist options
  • Select an option

  • Save JonForest/1f2c428ede5c58a8dbca91298ccc03c3 to your computer and use it in GitHub Desktop.

Select an option

Save JonForest/1f2c428ede5c58a8dbca91298ccc03c3 to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
stateArrays: [[1, "Alabama"], [2, "Alaska"], [3, "Arizona"]]
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
<select id="state_list">
{{#each stateArrays as |stateArray|}}
<option value={{stateArray.[0]}}>{{stateArray.[1]}}</option>
{{/each}}
</select>
<br>
<br>
{
"version": "0.10.6",
"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.9.0",
"ember-data": "2.9.0",
"ember-template-compiler": "2.9.0",
"ember-testing": "2.9.0"
},
"addons": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment