| 16 | module.exports = (AboutView = (function () { |
| 17 | AboutView = class AboutView extends RootView { |
| 18 | static initClass () { |
| 19 | this.prototype.id = 'about-view' |
| 20 | this.prototype.template = template |
| 21 | this.prototype.logoutRedirectURL = false |
| 22 | this.prototype.jobs = [] |
| 23 | |
| 24 | this.prototype.events = { |
| 25 | 'click #fixed-nav a': 'onClickFixedNavLink', |
| 26 | 'click .screen-thumbnail': 'onClickScreenThumbnail', |
| 27 | 'click #carousel-left': 'onLeftPressed', |
| 28 | 'click #carousel-right': 'onRightPressed' |
| 29 | } |
| 30 | |
| 31 | this.prototype.shortcuts = { |
| 32 | right: 'onRightPressed', |
| 33 | left: 'onLeftPressed', |
| 34 | esc: 'onEscapePressed' |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | getMeta () { |
| 39 | return { |