Small fixes for heat map views

This commit is contained in:
Joseph Schorr 2016-06-22 15:56:11 -04:00
parent 61573604ef
commit 760d63bfdc
2 changed files with 4 additions and 2 deletions

View file

@ -39,10 +39,12 @@ angular.module('quay').directive('heatmap', function () {
domainMargin: [10, 10, 10, 10], domainMargin: [10, 10, 10, 10],
displayLegend: false, displayLegend: false,
tooltip: true, tooltip: true,
weekStartOnMonday: false,
legendColors: { legendColors: {
empty: "#f4f4f4", empty: "#f4f4f4",
min: "#c9e9fb", min: "#c9e9fb",
max: "steelblue", max: "steelblue",
base: 'white'
} }
}); });
} }
@ -59,7 +61,7 @@ angular.module('quay').directive('heatmap', function () {
}; };
$scope.$watch('data', function() { $scope.$watch('data', function() {
$timeout(refresh, 500); $timeout(refresh, 750);
}); });
} }
}; };