1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

Update legend sizing. #1800.

This commit is contained in:
Brandon Hilkert 2014-06-24 20:05:12 -04:00
parent 68a196f6f3
commit 3944fadaf1
2 changed files with 3 additions and 3 deletions

View file

@ -66,7 +66,7 @@ var realtimeGraph = function(updatePath) {
var label = document.createElement('div');
label.className = 'tag';
label.innerHTML = d.name + ": " + Math.floor(d.formattedYValue);
label.innerHTML = d.name + ": " + Math.floor(d.formattedYValue).numberWithDelimiter();
line.appendChild(swatch);
line.appendChild(label);
@ -173,7 +173,7 @@ var historyGraph = function() {
var label = document.createElement('div');
label.className = 'tag';
label.innerHTML = d.name + ": " + Math.floor(d.formattedYValue);
label.innerHTML = d.name + ": " + Math.floor(d.formattedYValue).numberWithDelimiter();
line.appendChild(swatch);
line.appendChild(label);

View file

@ -384,7 +384,7 @@ div.interval-slider input {
#realtime-legend,
#history-legend {
width: 490px;
width: 580px;
text-align: left;
margin-top: 5px;
float: right;