summaryrefslogtreecommitdiff
path: root/public/js
diff options
context:
space:
mode:
authorWu Cheng-Han2015-12-18 10:15:28 -0600
committerWu Cheng-Han2015-12-18 10:15:28 -0600
commit32a89e13cd7fa2da434e9fac274c6b41f9a6af60 (patch)
treec7a58f4dda87e36babec79b4786f815b7ae57cc8 /public/js
parent02cd3d633e6e44f6a0b50def5dc76d4cf91a6a54 (diff)
Fixed possible bug in partialUpdate
Diffstat (limited to 'public/js')
-rw-r--r--public/js/index.js2
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();
}
}
}