1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Applied the same fix to the emby-radio.js

This commit is contained in:
matjaz321 2020-08-13 21:25:38 +02:00
parent d6ab99b59d
commit ee54714603

View file

@ -9,7 +9,7 @@ import 'webcomponents';
function onKeyDown(e) { function onKeyDown(e) {
// Don't submit form on enter // Don't submit form on enter
// Real (non-emulator) Tizen does nothing on Space // Real (non-emulator) Tizen does nothing on Space
if (e.keyCode === 13 || e.keyCode === 32) { if (e.keyCode === 13 || (e.keyCode === 32 && browser.tizen)) {
e.preventDefault(); e.preventDefault();
if (!this.checked) { if (!this.checked) {