mirror of
https://github.com/nasa/openmct.git
synced 2024-12-22 06:27:48 +00:00
9 lines
315 B
HTML
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>
|