Created
August 27, 2015 13:41
-
-
Save rwjblue/35ec52938a0cb6205da3 to your computer and use it in GitHub Desktop.
run helper on update
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName:'Ember Twiddle', | |
stuff: ['grapes', 'animals', 'cheese'], | |
selectedStuff: ['animals'], | |
actions: { | |
toggleThing(thing){ | |
if(this.get('selectedStuff').contains(thing)){ | |
console.log('remove ' + thing); | |
this.get('selectedStuff').removeObject(thing); | |
} else { | |
console.log('add ' + thing); | |
this.get('selectedStuff').pushObject(thing); | |
} | |
} | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export function isIn(params) { | |
return params[0].contains(params[1]); | |
} | |
export default Ember.Helper.extend({ | |
compute: function([array, item]) { | |
this.set('_array', array); | |
return array.contains(item); | |
}, | |
recomputeOnArrayChange: Ember.observer('_array.[]', function() { | |
this.recompute(); | |
}) | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.4.7", | |
"dependencies": { | |
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js", | |
"ember": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/1.13.6/ember.js", | |
"ember-data": "https://cdnjs.cloudflare.com/ajax/libs/ember-data.js/1.13.7/ember-data.js", | |
"ember-template-compiler": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/1.13.6/ember-template-compiler.js" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment