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

Merge pull request from mperham/legend-fix

Update legend sizing
This commit is contained in:
Mike Perham 2014-06-24 17:29:41 -07:00
commit b3622df085
2 changed files with 3 additions and 3 deletions
web/assets
javascripts
stylesheets

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;