mirror of
https://github.com/nasa/openmct.git
synced 2024-12-22 22:42:24 +00:00
1b0303e517
Bring in work on general-purpose and over-arching user interface bundles from the sandbox transition branch. WTD-574.
18 lines
619 B
HTML
18 lines
619 B
HTML
<div class="menu-element context-menu-wrapper" ng-controller="ContextMenuController">
|
|
<div class="menu context-menu dropdown">
|
|
<ul>
|
|
|
|
<li ng-repeat="menuAction in menuActions">
|
|
<a href=""
|
|
ng-click="menuAction.perform()"
|
|
title="{{menuAction.getMetadata().description}}">
|
|
<span class="ui-symbol icon type-icon">
|
|
{{menuAction.getMetadata().glyph}}
|
|
</span>
|
|
{{menuAction.getMetadata().name}}
|
|
</a>
|
|
</li>
|
|
|
|
</ul>
|
|
</div>
|
|
</div> |