openmct/platform/commonUI/edit/res/templates/edit-action-buttons.html

9 lines
315 B
HTML
Raw Normal View History

<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>