remote-debug.html 768 B

1234567891011121314151617181920212223
  1. <div bs-panel="controls outline">
  2. <h1 bs-heading>
  3. <icon icon="{{ctrl.section.icon}}"></icon>
  4. {{ctrl.section.title}}
  5. </h1>
  6. </div>
  7. <switch toggle="ctrl.toggleClientFile(item)"
  8. switchid="plugins-{{$index}}"
  9. active="item.active"
  10. prop="active"
  11. ng-repeat="item in ctrl.items track by $index"
  12. item="item">
  13. <div bs-panel-content ng-if="item.active && item.hidden.length" ng-bind-html="item.hidden"></div>
  14. </switch>
  15. <switch toggle="ctrl.toggleOverlayGrid(ctrl.overlayGrid)"
  16. switchid="css-overlay-grid"
  17. active="ctrl.overlayGrid.active"
  18. prop="active"
  19. item="ctrl.overlayGrid">
  20. <css-grid options="ctrl.uiOptions" ng-if="ctrl.options.mode !== 'snippet'"></css-grid>
  21. </switch>