silverstripe-reports/javascript/CMSPagesController.Tree.js

8 lines
311 B
JavaScript

(function($) {
// Load tree links directly rather than through ajax into .cms-edit-form.
$('.cms-tree').bind('select_node.jstree', function(e, data) {
var node = data.rslt.obj, url = $(node).find('a:first').attr('href');
if(url && url != '#') document.location.href = url;
return false;
});
}(jQuery));