Fixed possible bug in partialUpdate

This commit is contained in:
Wu Cheng-Han 2015-12-18 10:15:28 -06:00
parent 02cd3d633e
commit 32a89e13cd

View file

@ -2038,7 +2038,7 @@ function partialUpdate(src, tar, des) {
console.log(removeElements[j].outerHTML); console.log(removeElements[j].outerHTML);
} }
if (removeElements[j]) if (removeElements[j])
removeElements[j].remove(); $(removeElements[j]).remove();
} }
} }
} }