(e)
| 747 | } |
| 748 | |
| 749 | onClickViewLevels (e) { |
| 750 | const courseID = $(e.target).data('course-id') |
| 751 | const courseInstanceID = $(e.target).data('courseinstance-id') |
| 752 | if (window.tracker != null) { |
| 753 | window.tracker.trackEvent('Students View Levels', { category: 'Students', courseID, courseInstanceID }) |
| 754 | } |
| 755 | const levelsUrl = $(e.currentTarget).data('href') |
| 756 | return application.router.navigate(levelsUrl, { trigger: true }) |
| 757 | } |
| 758 | |
| 759 | onClickViewProjectGalleryLink (e) { |
| 760 | const courseID = $(e.target).data('course-id') |
nothing calls this directly
no test coverage detected