openmct/platform/commonUI/edit/res/templates/edit-action-buttons.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

9 lines
315 B
HTML

<span ng-controller="EditActionController">
<span ng-repeat="currentAction in editActions">
<a class='btn'
ng-click="currentAction.perform()"
ng-class="{ major: $index === 0, subtle: $index !== 0 }">
{{currentAction.getMetadata().name}}
</a>
</span>
</span>