Big emojis: fix nodeList count

actually-fix-tabs-bar
Alex Gleason 2021-07-09 17:02:04 -05:00
rodzic 2082c19c53
commit 60bdccc0b5
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -2,10 +2,10 @@
export const onlyEmoji = (node, limit = 1) => {
if (!node) return false;
if (node.textContent.replaceAll(' ', '') !== '') return false;
const emojis = [...node.querySelectorAll('img.emojione')];
const emojis = Array.from(node.querySelectorAll('img.emojione'));
if (emojis.length === 0) return false;
if (emojis.length > limit) return false;
const images = [...node.querySelectorAll('img')];
const images = Array.from(node.querySelectorAll('img'));
if (images.length > emojis.length) return false;
return true;
};