(e)
| 154 | } |
| 155 | |
| 156 | onClickTeacherButton (e) { |
| 157 | if (isCoco()) { |
| 158 | this.homePageEvent($(e.target).data('event-action')) |
| 159 | return this.openModalView(new CreateAccountModal({ startOnPath: 'oz-vs-coco' })) |
| 160 | } else { |
| 161 | this.homePageEvent('Started Signup') |
| 162 | return this.openModalView(new CreateAccountModal({ startOnPath: 'teacher' })) |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | onClickParentButton (e) { |
| 167 | this.homePageEvent($(e.target).data('event-action')) |
nothing calls this directly
no test coverage detected