Fixed render issue when resizing rows

This commit is contained in:
Rashid Khan 2013-03-01 13:05:09 -07:00
parent 107cf6b817
commit 6ddb642790
4 changed files with 4 additions and 4 deletions

View File

@ -116,7 +116,6 @@ angular.module('kibana.dashcontrol', [])
}
$scope.elasticsearch_save = function(type) {
console.log(type)
// Clone object so we can modify it without influencing the existing obejct
var save = _.clone($scope.dashboards)

View File

@ -1,3 +1,3 @@
<kibana-panel ng-controller='histogram' style="height:{{row.height}}">
<div histogram params="{{panel}}" style="height:{{row.height}}"></div>
<div histogram params="{{panel}}" style="height:{{row.height}};position:relative"></div>
</kibana-panel>

View File

@ -105,7 +105,8 @@ angular.module('kibana.histogram', [])
data: {
label: $scope.panel.query[k].label || k,
data: data,
}
},
};
if (!(_.isUndefined($scope.panel.query[k].color)))

View File

@ -1,3 +1,3 @@
<kibana-panel ng-controller='pie'>
<div pie params="{{panel}}" style="height:{{row.height}}"></div>
<div pie params="{{panel}}" style="height:{{row.height}};position:relative"></div>
</kibana-panel>