(e)
| 101 | } |
| 102 | |
| 103 | onClickRequestQuote (e) { |
| 104 | this.playSound('menu-button-click') |
| 105 | e.preventDefault() |
| 106 | e.stopImmediatePropagation() |
| 107 | this.homePageEvent($(e.target).data('event-action')) |
| 108 | if (me.isTeacher()) { |
| 109 | return application.router.navigate('/teachers/update-account', { trigger: true }) |
| 110 | } else { |
| 111 | return application.router.navigate('/contact-cn', { trigger: true }) |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | onClickSetupClass (e) { |
| 116 | this.homePageEvent($(e.target).data('event-action')) |
nothing calls this directly
no test coverage detected