Files
coffeescript/documentation/js/fat_arrow.js
Jeremy Ashkenas 3e41659095 CoffeeScript 1.1.3
2011-11-08 18:01:45 -05:00

11 lines
237 B
JavaScript

var Account;
Account = function(customer, cart) {
var _this = this;
this.customer = customer;
this.cart = cart;
return $('.shopping_cart').bind('click', function(event) {
return _this.customer.purchase(_this.cart);
});
};