Fix episode arrow buttons and expand test suite to 111 tests
This commit is contained in:
parent
ba6ff78cca
commit
bfcb1082bf
File diff suppressed because it is too large
Load Diff
@ -71,6 +71,13 @@ class UIManager {
|
|||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
this.episodeManager.makeEpisodeRangeEditable(e.target);
|
this.episodeManager.makeEpisodeRangeEditable(e.target);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Handle episode arrow buttons
|
||||||
|
if (e.target.classList.contains('episode-arrow')) {
|
||||||
|
e.stopPropagation();
|
||||||
|
const direction = e.target.classList.contains('episode-arrow-left') ? 'left' : 'right';
|
||||||
|
this.handleEpisodeArrowClick(e.target, direction);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// Add click handler for Begin Mapping button
|
// Add click handler for Begin Mapping button
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user