Files
coffeescript/documentation/js/fat_arrow.js
Jeremy Ashkenas 533ad8afe9 CoffeeScript 1.9.1
2015-02-18 15:43:33 -05:00

13 lines
298 B
JavaScript

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