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:
parent
68a196f6f3
commit
3944fadaf1
2 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
|
|
@ -384,7 +384,7 @@ div.interval-slider input {
|
|||
|
||||
#realtime-legend,
|
||||
#history-legend {
|
||||
width: 490px;
|
||||
width: 580px;
|
||||
text-align: left;
|
||||
margin-top: 5px;
|
||||
float: right;
|
||||
|
|
Loading…
Add table
Reference in a new issue