Created
December 24, 2015 05:06
-
-
Save jeffdill2/7c0fab765d205a38c8dc to your computer and use it in GitHub Desktop.
New Twiddle
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({ | |
model: [ | |
{ | |
"item_id": 1, | |
"item_name":"Item 1", | |
"item_price": 500 | |
}, | |
{ | |
"item_id": 2, | |
"item_name": "Item 2", | |
"item_price": 230 | |
}, | |
{ | |
"item_id": 3, | |
"item_name": "Item 3", | |
"item_price": 150 | |
} | |
], | |
totalDue: Ember.computed('[email protected]_price', function() { | |
return this.get('model').mapBy('item_price').reduce((a, b) => a + b, 0); | |
}) | |
}); |
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.17", | |
"EmberENV": { | |
"FEATURES": {} | |
}, | |
"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