mirror of
https://github.com/nasa/openmct.git
synced 2025-01-05 12:54:09 +00:00
15 lines
442 B
HTML
15 lines
442 B
HTML
|
<span ng-controller="ActionGroupController">
|
||
|
|
||
|
<span ng-repeat="action in ungrouped">
|
||
|
<mct-include key="'action-button'" parameters="{ action: action }">
|
||
|
</mct-include>
|
||
|
</span>
|
||
|
|
||
|
<span class="btn-set" ng-repeat="group in groups">
|
||
|
<span ng-repeat="action in group">
|
||
|
<mct-include key="'action-button'" parameters="{ action: action }">
|
||
|
</mct-include>
|
||
|
</span>
|
||
|
</span>
|
||
|
|
||
|
</span>
|