(e)
| 126 | } |
| 127 | |
| 128 | onClickRequestQuote (e) { |
| 129 | this.playSound('menu-button-click') |
| 130 | e.preventDefault() |
| 131 | e.stopImmediatePropagation() |
| 132 | this.homePageEvent($(e.target).data('event-action')) |
| 133 | if (me.isTeacher()) { |
| 134 | return application.router.navigate('/teachers/update-account', { trigger: true }) |
| 135 | } else { |
| 136 | return application.router.navigate('/teachers/quote', { trigger: true }) |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | onClickSetupClass (e) { |
| 141 | this.homePageEvent($(e.target).data('event-action')) |
nothing calls this directly
no test coverage detected