style: auto-fix linting issues
This commit is contained in:
parent
cafa97cb0f
commit
64a9171f79
2 changed files with 6 additions and 8 deletions
|
|
@ -1,10 +1,8 @@
|
||||||
// js/desktop/neutralino-bridge.js
|
// js/desktop/neutralino-bridge.js
|
||||||
|
|
||||||
const isNeutralino = typeof window !== 'undefined' && (
|
const isNeutralino =
|
||||||
window.NL_MODE ||
|
typeof window !== 'undefined' &&
|
||||||
window.location.search.includes('mode=neutralino') ||
|
(window.NL_MODE || window.location.search.includes('mode=neutralino') || window.parent !== window);
|
||||||
(window.parent !== window)
|
|
||||||
);
|
|
||||||
|
|
||||||
const listeners = new Map();
|
const listeners = new Map();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue