am 32bde8fd: am 0a7c8e2b: am 1aace7da: am 502c939f: docs: add support for an infinite number of nested lists in side nav
* commit '32bde8fd70fa23cbd9a39ef5d624ff1f1b51ac58': docs: add support for an infinite number of nested lists in side nav
This commit is contained in:
commit
4b10b491b6
|
@ -320,7 +320,7 @@ video.with-shadow {
|
|||
background: transparent; }
|
||||
#nav li.expanded li ul {
|
||||
/* 3rd level ul */
|
||||
padding:0 10px;
|
||||
padding:0 0 0 10px;
|
||||
}
|
||||
#nav li.expanded > .nav-section-header:after {
|
||||
content: '';
|
||||
|
|
|
@ -138,12 +138,13 @@ $(document).ready(function() {
|
|||
var $selListItem;
|
||||
if ($selNavLink.length) {
|
||||
$selListItem = $selNavLink.closest('li');
|
||||
|
||||
$selListItem.addClass('selected');
|
||||
$selListItem.closest('li.nav-section').addClass('expanded');
|
||||
$selListItem.closest('li.nav-section').children('ul').show();
|
||||
$selListItem.closest('li.nav-section').parent().closest('li.nav-section').addClass('expanded');
|
||||
$selListItem.closest('li.nav-section').parent().closest('ul').show();
|
||||
|
||||
// Traverse up the tree and expand all parent nav-sections
|
||||
$selNavLink.parents('li.nav-section').each(function() {
|
||||
$(this).addClass('expanded');
|
||||
$(this).children('ul').show();
|
||||
});
|
||||
|
||||
|
||||
// $selListItem.closest('li.nav-section').closest('li.nav-section').addClass('expanded');
|
||||
|
|
Loading…
Reference in New Issue