remove hasFocus checks: not all events were being responded to

This commit is contained in:
dragonwocky 2021-12-10 23:38:47 +11:00
parent d984c8bc36
commit e4187700b2
2 changed files with 8 additions and 10 deletions

File diff suppressed because one or more lines are too long

View File

@ -29,9 +29,7 @@ export const whenReady = (selectors = []) => {
const onLoad = () => {
const interval = setInterval(isReady, 100);
function isReady() {
const ready =
document.hasFocus() &&
selectors.every((selector) => document.querySelector(selector));
const ready = selectors.every((selector) => document.querySelector(selector));
if (!ready) return;
clearInterval(interval);
res(true);
@ -170,7 +168,7 @@ export const readFromClipboard = () => {
const triggerHotkeyListener = (event, hotkey) => {
const inInput = document.activeElement.nodeName === 'INPUT' && !hotkey.listenInInput;
if (inInput || !document.hasFocus()) return;
if (inInput) return;
const pressed = hotkey.keys.every((key) => {
key = key.toLowerCase();
const modifiers = {
@ -262,7 +260,7 @@ export const addDocumentObserver = (callback, selectors = []) => {
}
};
_documentObserver = new MutationObserver((list, observer) => {
if (!_documentObserverEvents.length && document.hasFocus())
if (!_documentObserverEvents.length)
requestIdleCallback(() => handle(_documentObserverEvents));
_documentObserverEvents.push(...list);
});