Added dashboard editor, row adding/moving/removing

This commit is contained in:
Rashid Khan
2013-02-13 14:24:32 -07:00
parent b162bd64ce
commit 42b415cf26
7 changed files with 108 additions and 22 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
<kibana-panel ng-controller='sort' style="white-space: nowrap;">
<label><small>{{panel.label}}</small></label>
<select style="width:85%" ng-model="panel.sort[0]" ng-change="set_sort()" ng-options="f for f in fields"></select>
<i ng-click="toggle_sort()" ng-class="{'icon-chevron-up': panel.sort[1] == 'asc','icon-chevron-down': panel.sort[1] == 'desc'}"></i>
<i ng-click="toggle_sort()" class="pointer" ng-class="{'icon-chevron-up': panel.sort[1] == 'asc','icon-chevron-down': panel.sort[1] == 'desc'}"></i>
</kibana-panel>