Skip to content

Instantly share code, notes, and snippets.

@jamespeerless
Created February 4, 2014 22:06
Show Gist options
  • Save jamespeerless/8813292 to your computer and use it in GitHub Desktop.
Save jamespeerless/8813292 to your computer and use it in GitHub Desktop.
Charges.Charge = (function(_super) {
__extends(Charge, _super);
function Charge() {
_ref1 = Charge.__super__.constructor.apply(this, arguments);
return _ref1;
}
Charge.prototype.template = "card/charges/transaction";
Charge.prototype.tagName = "li";
Charge.prototype.className = "topcoat-list__item";
return Charge;
})(App.Views.ItemView);
List.Email = (function(_super) {
__extends(Email, _super);
function Email() {
_ref1 = Email.__super__.constructor.apply(this, arguments);
return _ref1;
}
Email.prototype.template = "email/list/email";
Email.prototype.tagName = "li";
Email.prototype.className = "topcoat-list__item";
Email.prototype.triggers = {
"click .show-email": "show:email:clicked"
};
return Email;
})(App.Views.ItemView);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment