module.html 396 B

12345
  1. <kibana-panel ng-controller='sort' style="white-space: nowrap;">
  2. <label><small>{{panel.label}}</small></label>
  3. <select style="width:85%" ng-model="panel.sort[0]" ng-change="set_sort()" ng-options="f for f in fields"></select>
  4. <i ng-click="toggle_sort()" class="pointer" ng-class="{'icon-chevron-up': panel.sort[1] == 'asc','icon-chevron-down': panel.sort[1] == 'desc'}"></i>
  5. </kibana-panel>