Skip to content

Commit

Permalink
Fix navigation in filtered trees
Browse files Browse the repository at this point in the history
close #272
  • Loading branch information
mar10 committed Jun 26, 2014
1 parent fda24dc commit 75214de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jquery.fancytree.js
Original file line number Diff line number Diff line change
Expand Up @@ -1206,7 +1206,7 @@ FancytreeNode.prototype = /** @lends FancytreeNode# */{
// Navigate to node
function _goto(n){
if( n ){
n.makeVisible();
try { n.makeVisible(); } catch(e) {} // #272
// Node may still be hidden by a filter
if( ! $(n.span).is(":visible") ) {
n.debug("Navigate: skipping hidden node");
Expand Down

0 comments on commit 75214de

Please sign in to comment.