-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed height bug, improved documentation for time stamped indices
- Loading branch information
Rashid Khan
committed
Mar 5, 2013
1 parent
b2c7f19
commit 5a0f15b
Showing
10 changed files
with
14 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<kibana-panel ng-controller='histogram' ng-init="init()" style="height:{{row.height}}"> | ||
<div histogram params="{{panel}}" style="height:{{panel.height}};position:relative"></div> | ||
<kibana-panel ng-controller='histogram' ng-init="init()" style="height:{{panel.height || row.height}}"> | ||
<div histogram params="{{panel}}" style="height:{{panel.height || row.height}};position:relative"></div> | ||
</kibana-panel> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<kibana-panel ng-controller='map' ng-init="init()"> | ||
<div map params="{{panel}}" style="height:{{panel.height}}"></div> | ||
<div map params="{{panel}}" style="height:{{panel.height || row.height}}"></div> | ||
</kibana-panel> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<kibana-panel ng-controller='pie' ng-init="init()"> | ||
<div pie params="{{panel}}" style="height:{{panel.height}};position:relative"></div> | ||
<div pie params="{{panel}}" style="height:{{panel.height || row.height}};position:relative"></div> | ||
</kibana-panel> |
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