#115 replaced checks for undefined with assigned helper function
This commit is contained in:
parent
d7aaf327a0
commit
97042aa26a
|
@ -23,7 +23,7 @@ function observeScreenshotTooltip(tooltip) {
|
|||
// Switched to invisible
|
||||
if (!mutation.oldValue.includes('display: none') && mutation.target.style.display == 'none') {
|
||||
let player = findPlayer();
|
||||
if (typeof player !== 'undefined') {
|
||||
if (helper.assigned(player)) {
|
||||
resumePlayer(player);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -31,8 +31,7 @@ function updateLanguageDisplay(node) {
|
|||
function updateLanguageDisplayListMode(node) {
|
||||
// last column with flags
|
||||
let col = node.querySelector('h3.layout-align-end-center');
|
||||
|
||||
if (typeof col === 'undefined' || col.awpManipulated) {
|
||||
if (!helper.assigned(col) || col.awpManipulated) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -43,7 +42,7 @@ function updateLanguageDisplayBoxMode(node) {
|
|||
// last column with flags
|
||||
let col = node.querySelector('div.layout-align-end-start');
|
||||
|
||||
if (typeof col === 'undefined' || col.awpManipulated) {
|
||||
if (!helper.assigned(col) || col.awpManipulated) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import * as core from '../utils/aniwatchCore';
|
||||
import { v4 as uuidv4 } from 'uuid';
|
||||
import { getGlobalConfiguration, SETTINGS_w2gDisplayCharacterCounter } from '../configuration/configuration';
|
||||
import { assigned } from '../utils/helpers';
|
||||
|
||||
export function init() {
|
||||
getGlobalConfiguration().getProperty(SETTINGS_w2gDisplayCharacterCounter, value => {
|
||||
|
@ -16,7 +17,7 @@ function manipulateChatInput() {
|
|||
let textarea = document.querySelector('.chat-input textarea');
|
||||
|
||||
// avoid duplicate registration
|
||||
if (typeof textarea.dataset.charCounterId !== 'undefined') {
|
||||
if (assigned(textarea.dataset.charCounterId)) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -82,7 +82,7 @@ function awaitPageLoaded() {
|
|||
});
|
||||
};
|
||||
|
||||
if (typeof preLoader === 'undefined') {
|
||||
if (!helper.assigned(preLoader)) {
|
||||
runScripts();
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue