Bump version to 1.5.0.4 and update changelog for mediaBarEnhanced.js and manifest.json; enhance keyboard navigation controls
All checks were successful
Auto Release Plugin / build-and-release (push) Successful in 53s
All checks were successful
Auto Release Plugin / build-and-release (push) Successful in 53s
This commit is contained in:
@@ -2560,6 +2560,15 @@ const SlideshowManager = {
|
||||
e.preventDefault();
|
||||
break;
|
||||
|
||||
case "ArrowUp":
|
||||
case "ArrowDown":
|
||||
setTimeout(() => {
|
||||
const active = document.activeElement;
|
||||
if (active && active !== document.body && active.id !== "slides-container") {
|
||||
active.scrollIntoView({behavior: 'smooth', block: 'center'});
|
||||
}
|
||||
}, 100);
|
||||
break;
|
||||
|
||||
case " ": // Space bar
|
||||
this.togglePause();
|
||||
|
||||
Reference in New Issue
Block a user