Skip to content

Commit 32a89e1

Browse files
committed
Fixed possible bug in partialUpdate
1 parent 02cd3d6 commit 32a89e1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

public/js/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2038,7 +2038,7 @@ function partialUpdate(src, tar, des) {
20382038
console.log(removeElements[j].outerHTML);
20392039
}
20402040
if (removeElements[j])
2041-
removeElements[j].remove();
2041+
$(removeElements[j]).remove();
20422042
}
20432043
}
20442044
}

0 commit comments

Comments
 (0)