Skip to content

Commit

Permalink
BUGFIX: Fix trac ticket #7476
Browse files Browse the repository at this point in the history
We missed making an event delegatable in #542
the result was 7476 wasnt actually fixed
  • Loading branch information
Hamish Friedlander committed Jun 21, 2012
1 parent bba7a7a commit daa226a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/javascript/LeftAndMain.Tree.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
});
})
// Make some jstree events delegatable
.bind('select_node.jstree check_node.jstree', function(e, data) {
.bind('select_node.jstree check_node.jstree uncheck_node.jstree', function(e, data) {
$(document).triggerHandler(e, data);
})
},
Expand Down

0 comments on commit daa226a

Please sign in to comment.