Not allowing to use space bar when slider is active

Created on 10 April 2025, 15 days ago

Problem/Motivation

User not able to use space bar when slide is active

Steps to reproduce

try to input space after text

Proposed resolution

document.addEventListener('keydown', (e) => {
if (e.key === 'ArrowRight') nextSlide();
else if (e.key === 'ArrowLeft') prevSlide();
else if (e.key === ' ') {
e.preventDefault();
togglePlayPause();
}
});

rewrite this code

Remaining tasks

User interface changes

API changes

Data model changes

πŸ› Bug report
Status

Active

Version

1.0

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States thatipudir

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Production build 0.71.5 2024