(e)
| 621 | } |
| 622 | |
| 623 | onClickJoinClassButton (e) { |
| 624 | const classCode = this.$('#class-code-input').val() || this.classCodeQueryVar |
| 625 | if (window.tracker != null) { |
| 626 | window.tracker.trackEvent('Students Join Class With Code', { category: 'Students', classCode }) |
| 627 | } |
| 628 | return this.joinClass() |
| 629 | } |
| 630 | |
| 631 | joinClass () { |
| 632 | if (this.state) { return } |
nothing calls this directly
no test coverage detected