@spotinst/spinnaker-deck
Version:
Spinnaker-Deck service, forked with support to Spotinst
13 lines (12 loc) • 655 B
HTML
<div class="collapsible-{{getClassType()}}section">
<a href class="section-{{getClassType()}}heading" ng-click="toggle()">
<h4 class="collapsible-{{getClassType()}}heading">
<span class="glyphicon glyphicon-chevron-right" style="{{getIconStyle()}}"></span>
{{heading}}
<span ng-transclude="heading"></span>
<help-field ng-if="helpKey" key="{{helpKey}}" placement="right"></help-field>
</h4>
</a>
<div class="content-body" ng-class="bodyClass" ng-if="heading && state.expanded" ng-transclude></div>
<div class="content-body" ng-class="bodyClass" ng-if="!heading && state.expanded" ng-transclude="body"></div>
</div>