New built

This commit is contained in:
Rick Ootes 2018-03-21 10:50:16 +01:00
parent 0c2919020e
commit f660b8e52e
2 changed files with 2 additions and 2 deletions

View File

@ -386,7 +386,7 @@ Licensed under the BSD-2-Clause License.
gmax = Math.ceil(ymax / unit) * unit;
step = (gmax - gmin) / (nlines - 1);
if (this.options.roundYSteps) {
step = Math.round(step);
step = Math.ceil(step);
}
if (unit === 1 && step > 1 && Math.ceil(step) !== step) {
step = Math.ceil(step);

2
morris.min.js vendored

File diff suppressed because one or more lines are too long