MDL-75870 course: only section togglers to toggle sections

This commit is contained in:
Nick Phillips 2022-12-08 09:44:47 +13:00
parent 67bbf6c416
commit e4e7ec5efb
3 changed files with 6 additions and 3 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -158,7 +158,10 @@ export default class Component extends BaseComponent {
*/
_sectionTogglers(event) {
const sectionlink = event.target.closest(this.selectors.TOGGLER);
const isChevron = event.target.closest(this.selectors.COLLAPSE);
const closestCollapse = event.target.closest(this.selectors.COLLAPSE);
// Assume that chevron is the only collapse toggler in a section heading;
// I think this is the most efficient way to verify at the moment.
const isChevron = closestCollapse.closest(this.selectors.SECTION_ITEM);
if (sectionlink || isChevron) {