Update built files

Esse commit está contido em:
Evert Timberg
2016-01-09 10:59:52 -05:00
commit 126e318fef
2 arquivos alterados com 9 adições e 4 exclusões
externo
+7 -2
Ver Arquivo
@@ -409,8 +409,13 @@
maxSteps = Math.floor(drawingSize/(textSize * 1.5)),
skipFitting = (minSteps >= maxSteps);
var maxValue = max(valuesArray),
minValue = min(valuesArray);
// Filter out null values since these would min() to zero
var values = [];
each(valuesArray, function( v ){
v == null || values.push( v );
});
var minValue = min(values),
maxValue = max(values);
// We need some degree of separation here to calculate the scales if all the values are the same
// Adding/minusing 0.5 will give us a range of 1.
+2 -2
Ver Arquivo
Diff do arquivo suprimido porque uma ou mais linhas são muito longas