Files
coffeescript/documentation/js/fat_arrow.js
Jeremy Ashkenas e0ec8a51e4 CoffeeScript 1.9.0
2015-01-29 12:20:46 -05:00

13 lines
298 B
JavaScript

// Generated by CoffeeScript 1.9.0
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));
};