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

@ -14,4 +14,4 @@
font-family: 'Source Sans Pro', sans-serif;
font-size: 12px;
text-transform: uppercase;
}
}

View file

@ -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);
});
}
};