editor.html 786 B

123456789101112131415161718192021
  1. <div class="row-fluid" ng-controller="parallelcoordinates">
  2. <div style="width:90%">
  3. <form class="input-append">
  4. <h6>Query</h6>
  5. <input type="text" style="width:90%" ng-model="panel.query">
  6. <button class="btn" ng-click="get_data();"><i class="icon-search"></i></button>
  7. </form>
  8. </div>
  9. </div>
  10. <h5>Panel Spy</h5>
  11. <div class="row-fluid">
  12. <div class="span2">
  13. <label class="small"> Spyable </label><input type="checkbox" ng-model="panel.spyable" ng-checked="panel.spyable">
  14. </div>
  15. <div class="span9 small">
  16. The panel spy shows 'behind the scenes' information about a panel. It can
  17. be accessed by clicking the <i class='icon-eye-open'></i> in the top right
  18. of the panel.
  19. </div>
  20. </div>