
remove node modules make new data file for web ui initial commit of dashboard switch back to non SSL request move port splitting to common place; add to node resource location Signed-off-by: Patrick Reilly <patrick@kismatic.io> various path fixes make svg path relative work around missing mime type Signed-off-by: Patrick Reilly <patrick@kismatic.io> fix paths fix karma path remove bad protractor test
15 lines
710 B
HTML
15 lines
710 B
HTML
<ul class="kubernetes-ui-menu">
|
|
<li ng-repeat="section in menu.sections" class="parent-list-item" ng-class="{'parentActive' : isSectionSelected(section)}">
|
|
<h2 class="menu-heading" ng-if="section.type === 'heading'" id="heading_{{ section.name | nospace }}">
|
|
{{section.name}}
|
|
</h2>
|
|
<menu-link section="section" ng-if="section.type === 'link'"></menu-link>
|
|
<menu-toggle section="section" ng-if="section.type === 'toggle'"></menu-toggle>
|
|
<ul ng-if="section.children" class="menu-nested-list">
|
|
<li ng-repeat="child in section.children" ng-class="{'childActive' : isSectionSelected(child)}">
|
|
<menu-toggle section="child"></menu-toggle>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|