Small fixes for heat map views
This commit is contained in:
parent
61573604ef
commit
760d63bfdc
2 changed files with 4 additions and 2 deletions
|
@ -39,10 +39,12 @@ angular.module('quay').directive('heatmap', function () {
|
|||
domainMargin: [10, 10, 10, 10],
|
||||
displayLegend: false,
|
||||
tooltip: true,
|
||||
weekStartOnMonday: false,
|
||||
legendColors: {
|
||||
empty: "#f4f4f4",
|
||||
min: "#c9e9fb",
|
||||
max: "steelblue",
|
||||
base: 'white'
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -59,7 +61,7 @@ angular.module('quay').directive('heatmap', function () {
|
|||
};
|
||||
|
||||
$scope.$watch('data', function() {
|
||||
$timeout(refresh, 500);
|
||||
$timeout(refresh, 750);
|
||||
});
|
||||
}
|
||||
};
|
||||
|
|
Reference in a new issue