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

Disallow block padding

This commit is contained in:
MrTimscampi 2020-07-27 08:06:46 +02:00
parent 454b81a037
commit 5e1b6acffe
126 changed files with 2 additions and 2127 deletions

View file

@ -182,7 +182,6 @@ require(['apphost'], function (appHost) {
var isElectron = navigator.userAgent.toLowerCase().indexOf('electron') !== -1;
function allowInput() {
// This would be nice but always seems to return true with electron
if (!isElectron && document.hidden) { /* eslint-disable-line compat/compat */
return false;
@ -196,7 +195,6 @@ require(['apphost'], function (appHost) {
}
function raiseEvent(name, key, keyCode) {
if (!allowInput()) {
return;
}
@ -209,7 +207,6 @@ require(['apphost'], function (appHost) {
}
function clickElement(elem) {
if (!allowInput()) {
return;
}
@ -218,10 +215,8 @@ require(['apphost'], function (appHost) {
}
function raiseKeyEvent(oldPressedState, newPressedState, key, keyCode, enableRepeatKeyDown, clickonKeyUp) {
// No-op if oldPressedState === newPressedState
if (newPressedState === true) {
// button down
var fire = false;
@ -236,9 +231,7 @@ require(['apphost'], function (appHost) {
if (fire && keyCode) {
raiseEvent('keydown', key, keyCode);
}
} else if (newPressedState === false && oldPressedState === true) {
resetThrottle(key);
// button up
@ -406,5 +399,4 @@ require(['apphost'], function (appHost) {
// and provide input to the DOM navigator.getGamepads API.
window.navigator.gamepadInputEmulation = 'gamepad';
}
});