diff options
author | Wu Cheng-Han | 2015-12-18 10:15:28 -0600 |
---|---|---|
committer | Wu Cheng-Han | 2015-12-18 10:15:28 -0600 |
commit | 32a89e13cd7fa2da434e9fac274c6b41f9a6af60 (patch) | |
tree | c7a58f4dda87e36babec79b4786f815b7ae57cc8 /public | |
parent | 02cd3d633e6e44f6a0b50def5dc76d4cf91a6a54 (diff) |
Fixed possible bug in partialUpdate
Diffstat (limited to '')
-rw-r--r-- | public/js/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/js/index.js b/public/js/index.js index 4559cd92..046c5407 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -2038,7 +2038,7 @@ function partialUpdate(src, tar, des) { console.log(removeElements[j].outerHTML); } if (removeElements[j]) - removeElements[j].remove(); + $(removeElements[j]).remove(); } } } |