/// (function() { function main() { $.get('/navbar.html', function(pData) { $('nav').html(pData); // Set selected tab as selected $('nav').find('a').removeClass('nav-selected'); $('nav').find('a[href="' + window.location.pathname + '"').addClass('nav-selected'); // Set up tree callbacks $('.outer-tree > li').click(function() { $(this).toggleClass('expanded'); }) $('.inner-tree > li').click(function(pEv) { pEv.stopPropagation(); }) // Open up the selected document from the navigation tree var lSplitPath = window.location.pathname.split('/'); if (lSplitPath.length < 3) { return; } if (lSplitPath[1] === '2d') { $('nav > ul > li:nth-child(2)').addClass('expanded'); $('nav > ul > li:last-child').removeClass('expanded'); } }); } $(document).ready(main); })()