| 1234567891011121314151617181920212223 |
- <div bs-panel="controls outline">
- <h1 bs-heading>
- <icon icon="{{ctrl.section.icon}}"></icon>
- {{ctrl.section.title}}
- </h1>
- </div>
- <switch toggle="ctrl.toggleClientFile(item)"
- switchid="plugins-{{$index}}"
- active="item.active"
- prop="active"
- ng-repeat="item in ctrl.items track by $index"
- item="item">
- <div bs-panel-content ng-if="item.active && item.hidden.length" ng-bind-html="item.hidden"></div>
- </switch>
- <switch toggle="ctrl.toggleOverlayGrid(ctrl.overlayGrid)"
- switchid="css-overlay-grid"
- active="ctrl.overlayGrid.active"
- prop="active"
- item="ctrl.overlayGrid">
- <css-grid options="ctrl.uiOptions" ng-if="ctrl.options.mode !== 'snippet'"></css-grid>
- </switch>
|