(e)
| 739 | } |
| 740 | |
| 741 | onClickViewClass (e) { |
| 742 | const classroomID = $(e.target).data('classroom-id') |
| 743 | if (window.tracker != null) { |
| 744 | window.tracker.trackEvent('Students View Class', { category: 'Students', classroomID }) |
| 745 | } |
| 746 | return application.router.navigate(`/students/${classroomID}`, { trigger: true }) |
| 747 | } |
| 748 | |
| 749 | onClickViewLevels (e) { |
| 750 | const courseID = $(e.target).data('course-id') |
nothing calls this directly
no test coverage detected