mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
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:
parent
bba7a7ad8c
commit
daa226a9af
@ -102,7 +102,7 @@
|
|||||||
});
|
});
|
||||||
})
|
})
|
||||||
// Make some jstree events delegatable
|
// 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);
|
$(document).triggerHandler(e, data);
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user