grafana/dist/app/panels/derivequeries/editor.html
Spencer Alger 6c07338782 - Moved the config.js file into the root of the src and dist.
- prevented the config file from being minified.
 - offloaded the js minification to a dedicated uglify task, which accepts more options than the require-js wrapper does.
 - Addded the banner to the top of the minified files.
2013-09-13 16:02:08 -07:00

1 line
920 B
HTML

<div><div class="row-fluid"><div class="span1"><label class="small">Length</label><input type="number" style="width:80%" ng-model="panel.size" ng-change="set_refresh(true)"></div><div class="span3"><label class="small">Field</label><input type="text" bs-typeahead="fields.list" style="width:80%" ng-change="set_refresh(true)" ng-model="panel.field"></div><div class="span3"><label class="small">Query Mode</label><select style="width:80%" ng-change="set_refresh(true)" ng-model="panel.mode" ng-options="f for f in ['terms only','AND', 'OR']"></select></div><div class="span4"><label class="small">Exclude Terms(s) (comma seperated)</label><input array-join="" type="text" style="width:90%" ng-change="set_refresh(true)" ng-model="panel.exclude"></div><div class="span1"><label class="small">Rest</label><input type="checkbox" ng-model="panel.rest" ng-checked="panel.rest" ng-change="set_refresh(true)"></div></div></div>