jashkenas--coffeescript/documentation/coffee/fat_arrow.coffee

6 lines
157 B
CoffeeScript
Raw Normal View History

Account: (customer, cart) ->
2010-01-14 04:24:45 +00:00
this.customer: customer
this.cart: cart
$('.shopping_cart').bind 'click', (event) =>
2010-01-25 05:14:00 +00:00
this.customer.purchase this.cart