cart display now shows price and amount per item

This commit is contained in:
Senad Uka
2015-02-14 07:53:57 +01:00
parent 9ca7b33b91
commit ba22ea8bd7
7 changed files with 62 additions and 21 deletions

View File

@@ -102,7 +102,8 @@ var CartStore = _.extend({}, EventEmitter.prototype, {
var state = {
count: numberOfItems,
items: _itemsForDisplay
items: _itemsForDisplay,
itemCounts: states
};
return state;
},