Fix episode arrow buttons and expand test suite to 111 tests
This commit is contained in:
parent
f0f423c2f1
commit
03586ee420
File diff suppressed because it is too large
Load Diff
@ -71,6 +71,13 @@ class UIManager {
|
||||
e.stopPropagation();
|
||||
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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user