From 32a89e13cd7fa2da434e9fac274c6b41f9a6af60 Mon Sep 17 00:00:00 2001
From: Wu Cheng-Han <jacky_cute0808@hotmail.com>
Date: Fri, 18 Dec 2015 10:15:28 -0600
Subject: [PATCH] Fixed possible bug in partialUpdate

---
 public/js/index.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/public/js/index.js b/public/js/index.js
index 4559cd925..046c5407a 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();
         }
     }
 }