From 1d9d76b9db840d2bc3e48be40365d0465554edb4 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Mon, 28 Sep 2009 11:10:34 -0600 Subject: [PATCH] Fix DOM traversal --- imp/js/DimpBase.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imp/js/DimpBase.js b/imp/js/DimpBase.js index ae5426f7d..5d7f078a5 100644 --- a/imp/js/DimpBase.js +++ b/imp/js/DimpBase.js @@ -2003,7 +2003,7 @@ var DimpBase = { _handleFolderMouseClick: function(e) { var elt = e.element(), - li = elt.up(); + li = elt.up('LI'); if (!li) { return; -- 2.11.0