Created
February 4, 2014 22:06
-
-
Save jamespeerless/8813292 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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