()
| 14 | module.exports = (EmailVerifiedView = (function () { |
| 15 | EmailVerifiedView = class EmailVerifiedView extends RootView { |
| 16 | static initClass () { |
| 17 | this.prototype.id = 'email-verified-view' |
| 18 | this.prototype.template = template |
| 19 | |
| 20 | this.prototype.events = |
| 21 | { 'click .login-button': 'onClickLoginButton' } |
| 22 | } |
| 23 | |
| 24 | constructor (options, userID, verificationCode) { |
| 25 | super(...arguments) |