BUGFIX: Fix trac ticket #7476

We missed making an event delegatable in https://github.com/silverstripe/sapphire/pull/542
the result was 7476 wasnt actually fixed
This commit is contained in:
Hamish Friedlander 2012-06-22 10:46:03 +12:00
parent bba7a7ad8c
commit daa226a9af

View File

@ -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);
})
},