$(function() { initTableTree(); setHeight(); $(window).resize(setHeight); }); /** * Set pane height. * * @access public * @return void */ function setHeight() { var paneHeight = $(window).height() - 90; $('#sidebar .module-tree,#mainContent .module-content').css('height', paneHeight); } /** * Init table tree by zui. * * @access public * @return void */ function initTableTree() { $('#tableTree').tree( { data: tableTree, initialState: 'active', itemCreator: function($li, item) { $li.append('' + item.title + ''); if (item.active) $li.addClass('active open in'); } }); $('#tableTree').on('click', 'a', function(e) { var target = $(e.target); if (target.attr('data-has-children') === 'true') return; self.location.href = createLink('dev', 'db', 'module=' + target.attr('data-module')); }) }