Check newly added node type before "attachDirAuto" (#26972)

mj-develop
wxiaoguang 8 months ago committed by GitHub
parent 4e240f2304
commit 80d14b8f4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -19,7 +19,7 @@ export function initDirAuto() {
for (let i = 0; i < len; i++) {
const addedNode = mutation.addedNodes[i];
if (addedNode.nodeType !== Node.ELEMENT_NODE && addedNode.nodeType !== Node.DOCUMENT_FRAGMENT_NODE) continue;
attachDirAuto(addedNode);
if (addedNode.nodeName === 'INPUT' || addedNode.nodeName === 'TEXTAREA') attachDirAuto(addedNode);
const children = addedNode.querySelectorAll('input, textarea');
const len = children.length;
for (let childIdx = 0; childIdx < len; childIdx++) {

Loading…
Cancel
Save