()
| 17 | module.exports = (TrialRequestsView = (function () { |
| 18 | TrialRequestsView = class TrialRequestsView extends RootView { |
| 19 | static initClass () { |
| 20 | this.prototype.id = 'admin-trial-requests-view' |
| 21 | this.prototype.template = template |
| 22 | |
| 23 | this.prototype.events = { |
| 24 | 'click .btn-approve': 'onClickApprove', |
| 25 | 'click .btn-deny': 'onClickDeny' |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | constructor (options) { |
| 30 | super(options) |