Order product user spec green

This commit is contained in:
2014-06-25 17:23:43 +02:00
parent 58f0937570
commit 10bc926e87
10 changed files with 41 additions and 11 deletions
@@ -0,0 +1,17 @@
App.ListOrderView = Ember.View.extend
classNames: 'list-order-container'
classNameBindings: ['content.state', 'contentWrapClass']
templateName: 'list_order_row'
contentWrapClass: (-> "order-row-#{@get('content.id')}").property('content.id')
#click: ->
#if @route_param
#@get('controller').transitionToRoute(@route, @route_param)
#else
#@get('controller').transitionToRoute(@route)
#active: (->
#if @get('controller.currentPath') == @route then 'active' else ''
#).property('controller.currentPath')
#init: ->
#@templateName = "menu_item_#{@route}"
#@_super()