Skip to content

Instantly share code, notes, and snippets.

@matthias-k
Last active October 4, 2016 15:43
Show Gist options
  • Save matthias-k/23fccabed2d31a8a69e166ebde7fe7f8 to your computer and use it in GitHub Desktop.
Save matthias-k/23fccabed2d31a8a69e166ebde7fe7f8 to your computer and use it in GitHub Desktop.
Editing lists in ember
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
model: (function() {
return ['abc', 'foo', 'bar', 'baz'];
}).property()
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
<ul>
{{#each model as |item|}}
<li>{{item}}. Change here: {{input value=(mut item)}}</li>
{{/each}}
</ul>
<br>
Current model: {{model}}.
<br>
{
"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