From 579818d7aa81721f9f68389f113388bde599d458 Mon Sep 17 00:00:00 2001 From: "Steve L. Nyemba" Date: Sun, 13 Sep 2015 04:17:45 -0400 Subject: [PATCH] jx.dom.remove enhancement bug fix: jx.dom.remove must return the item that was removed just in case it needs to be processed --- dom.js | 1 + 1 file changed, 1 insertion(+) diff --git a/dom.js b/dom.js index 4c2530d..ca825f5 100644 --- a/dom.js +++ b/dom.js @@ -42,6 +42,7 @@ jx.dom.remove = function(id){ _item = id ; } _item.parentNode.removeChild(_item) ; + return _item ; }