submenu.html 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <div class="submenu-controls" ng-controller="SubmenuCtrl">
  2. <div class="tight-form borderless">
  3. <ul class="tight-form-list" ng-if="dashboard.templating.list.length > 0">
  4. <li ng-repeat="variable in variables" class="tight-form-item template-param-name dropdown">
  5. <variable-value-select variable="variable" on-updated="variableUpdated(variable)"></variable-value-select>
  6. </li>
  7. <!-- <li class="dropdown" ng&#45;repeat&#45;end> -->
  8. <!-- <a class="tight&#45;form&#45;item" tabindex="1" data&#45;toggle="dropdown">{{variable.current.text}} <i class="fa fa&#45;caret&#45;down"></i></a> -->
  9. <!-- <div class="dropdown&#45;menu variable&#45;values&#45;dropdown"> -->
  10. <!-- <input type="text" class="fluid&#45;width"> -->
  11. <!-- <div class="variable&#45;values&#45;list"> -->
  12. <!-- <div class="variable&#45;values&#45;list&#45;item" ng&#45;repeat="option in variable.options"> -->
  13. <!-- <editor&#45;checkbox text="{{option.text}}" model="asd" change="buildUrl()"></editor&#45;checkbox> -->
  14. <!-- </div> -->
  15. <!-- </div> -->
  16. <!-- </div> -->
  17. <!-- </li> -->
  18. <!-- -->
  19. <!--
  20. <li ng-repeat-end template-param-selector>
  21. </li>
  22. -->
  23. </ul>
  24. <ul class="tight-form-list" ng-if="dashboard.annotations.list.length > 0">
  25. <li ng-repeat="annotation in dashboard.annotations.list" class="tight-form-item annotation-segment" ng-class="{'annotation-disabled': !annotation.enable}">
  26. <a ng-click="disableAnnotation(annotation)">
  27. <i class="fa fa-bolt"></i>
  28. {{annotation.name}}
  29. <input class="cr1" id="hideYAxis" type="checkbox" ng-model="annotation.enable" ng-checked="annotation.enable">
  30. <label for="hideYAxis" class="cr1"></label>
  31. </a>
  32. </li>
  33. </ul>
  34. <div class="clearfix"></div>
  35. </div>
  36. </div>