openmct/platform/commonUI/general/res/templates/menu/context-menu.html
Victor Woeltjen 1b0303e517 [Common UI] Initial commonUI bundles
Bring in work on general-purpose and over-arching
user interface bundles from the sandbox transition
branch. WTD-574.
2014-11-23 15:41:20 -08:00

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>