editor.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <div class="row-fluid" ng-controller="map">
  2. <div class="span11">
  3. The map panel uses 2 letter country or US state codes to plot concentrations on a map. Darker terroritories mean more records matched that area. If multiple queries are sent from a single panel the <strong>first query will be displayed</strong>
  4. </div>
  5. </div>
  6. <div class="row-fluid">
  7. <div class="span3">
  8. <form>
  9. <h6>Field</h6>
  10. <input type="text" class="input-small" ng-model="panel.field">
  11. </form>
  12. </div>
  13. <div class="span6">
  14. <form class="input-append">
  15. <h6>Query</h6>
  16. <input type="text" ng-model="panel.query">
  17. <button class="btn" ng-click="get_data();"><i class="icon-search"></i></button>
  18. </form>
  19. </div>
  20. <div class="span1"><h6>Map</h6>
  21. <select ng-change="$emit('render')" class="input-small" ng-model="panel.map" ng-options="f for f in ['world','europe','usa']"></select>
  22. </div>
  23. </div>
  24. <h5>Panel Spy</h5>
  25. <div class="row-fluid">
  26. <div class="span2">
  27. <label class="small"> Spyable </label><input type="checkbox" ng-model="panel.spyable" ng-checked="panel.spyable">
  28. </div>
  29. <div class="span9 small">
  30. The panel spy shows 'behind the scenes' information about a panel. It can
  31. be accessed by clicking the <i class='icon-eye-open'></i> in the top right
  32. of the panel.
  33. </div>
  34. </div>