Index: lams_central/web/includes/javascript/bootstrap-treeview.js =================================================================== diff -u -rccee357b8eb24889b4bc19bb7d82cbdca3c8d0e4 -r106ee66ae4dd8224d8e14c5b7fc4a134ee4408cd --- lams_central/web/includes/javascript/bootstrap-treeview.js (.../bootstrap-treeview.js) (revision ccee357b8eb24889b4bc19bb7d82cbdca3c8d0e4) +++ lams_central/web/includes/javascript/bootstrap-treeview.js (.../bootstrap-treeview.js) (revision 106ee66ae4dd8224d8e14c5b7fc4a134ee4408cd) @@ -461,7 +461,7 @@ var selectedNode = node; // modified for LAMS var classList = target != 'refresh' && target.attr('class') ? target.attr('class').split(' ') : []; - if (target == 'refresh' || (classList.indexOf('expand-icon') !== -1)) { + if (target == 'refresh' || (classList.indexOf('expand-icon') !== -1) || (classList.indexOf('tree-parent') !== -1)) { if (this.options.lazyLoad) { var bareBonesLazyLoadFunction = function(parentNode, callback, options){callback(parentNode, [], options);}; this.options.lazyLoadFunction = (typeof this.options.lazyLoadFunction === 'function') ? this.options.lazyLoadFunction : bareBonesLazyLoadFunction;