This commit is contained in:
parent
05b85da3f4
commit
c95d9923f7
@ -74,7 +74,10 @@ class Listeners {
|
|||||||
// and if the focused element is not editable (e.g. text input)
|
// and if the focused element is not editable (e.g. text input)
|
||||||
// and any that accept key input http://webaim.org/techniques/keyboard/
|
// and any that accept key input http://webaim.org/techniques/keyboard/
|
||||||
const focused = utils.getFocusElement();
|
const focused = utils.getFocusElement();
|
||||||
if (utils.is.element(focused) && utils.matches(focused, this.player.config.selectors.editable)) {
|
if (utils.is.element(focused) && (
|
||||||
|
focused !== this.player.elements.inputs.seek &&
|
||||||
|
utils.matches(focused, this.player.config.selectors.editable))
|
||||||
|
) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user