-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from spenceralger/discover_skeleton
Discovery Panel Skeleton
- Loading branch information
Showing
22 changed files
with
339 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,43 @@ | ||
<h1>Discover</h1> | ||
<div ng-controller="discover"> | ||
<h1>Discover</h1> | ||
<div class="form-horizontal"> | ||
<div class="form-group"> | ||
<label class="control-label col-sm-2">Index</label> | ||
<div class="col-sm-10"> | ||
<input class="form-control" ng-model="index"> | ||
</div> | ||
</div> | ||
<!-- <div class="form-group"> | ||
<label class="control-label col-sm-3">Repeat Interval</label> | ||
<div class="col-sm-9"> | ||
<select | ||
class="form-control" | ||
ng-model="interval" | ||
ng-options="i.display for i in intervalOptions"> | ||
</select> | ||
</div> | ||
</div> --> | ||
<form class="form-group" ng-submit="reset()"> | ||
<label class="control-label col-sm-2">Query</label> | ||
<div class="col-sm-10"> | ||
<div class="input-group"> | ||
<input class="form-control" ng-model="query" > | ||
<span class="input-group-btn"> | ||
<button type="button" class="btn" ng-click="reset()"> | ||
<i class="glyphicon glyphicon-search"></i> | ||
</button> | ||
</span> | ||
</div> | ||
</div> | ||
</form> | ||
</div> | ||
<div class="input-group"> | ||
<label class="control-label col-sm-2">Limit</label> | ||
<select | ||
class="form-control" | ||
ng-model="size" | ||
ng-options="size.display for size in sizeOptions"> | ||
</select> | ||
</div> | ||
<kbn-table rows="rows" columns="columns"></kbn-table> | ||
</div> |
Oops, something went wrong.