mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
commit
b3622df085
2 changed files with 3 additions and 3 deletions
|
@ -66,7 +66,7 @@ var realtimeGraph = function(updatePath) {
|
||||||
|
|
||||||
var label = document.createElement('div');
|
var label = document.createElement('div');
|
||||||
label.className = 'tag';
|
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(swatch);
|
||||||
line.appendChild(label);
|
line.appendChild(label);
|
||||||
|
@ -173,7 +173,7 @@ var historyGraph = function() {
|
||||||
|
|
||||||
var label = document.createElement('div');
|
var label = document.createElement('div');
|
||||||
label.className = 'tag';
|
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(swatch);
|
||||||
line.appendChild(label);
|
line.appendChild(label);
|
||||||
|
|
|
@ -384,7 +384,7 @@ div.interval-slider input {
|
||||||
|
|
||||||
#realtime-legend,
|
#realtime-legend,
|
||||||
#history-legend {
|
#history-legend {
|
||||||
width: 490px;
|
width: 580px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
float: right;
|
float: right;
|
||||||
|
|
Loading…
Add table
Reference in a new issue