mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-18 04:42:01 +00:00
back key binding fixed
This commit is contained in:
parent
9871e438e8
commit
6a943415f1
1 changed files with 1 additions and 1 deletions
|
|
@ -15,7 +15,7 @@ function KeyboardNavigation() {
|
|||
return;
|
||||
}
|
||||
|
||||
if (event.target.tag !== 'INPUT') {
|
||||
if (event.target.tagName !== 'INPUT') {
|
||||
if (event.key === 'Backspace') {
|
||||
window.history.back();
|
||||
return;
|
||||
|
|
|
|||
Loading…
Reference in a new issue