Skip to content

Commit

Permalink
No animation in axis scrollbar.
Browse files Browse the repository at this point in the history
  • Loading branch information
TorsteinHonsi committed Jul 27, 2016
1 parent 7b57836 commit 5467267
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions js/highstock.src.js
Expand Up @@ -2,7 +2,7 @@
// @compilation_level SIMPLE_OPTIMIZATIONS

/**
* @license Highstock JS v4.2.5-modified (2016-07-26)
* @license Highstock JS v4.2.5-modified (2016-07-27)
*
* (c) 2009-2016 Torstein Honsi
*
Expand Down Expand Up @@ -20382,7 +20382,7 @@
* End ordinal axis logic *
*****************************************************************************/
/**
* Highstock JS v4.2.5-modified (2016-07-26)
* Highstock JS v4.2.5-modified (2016-07-27)
* Highcharts Broken Axis module
*
* License: www.highcharts.com/license
Expand Down Expand Up @@ -22507,7 +22507,7 @@
from = unitedMin + range * (1 - this.to);
}

axis.setExtremes(from, to, true, null, e);
axis.setExtremes(from, to, true, false, e);
});
}
});
Expand Down
2 changes: 1 addition & 1 deletion js/parts/Scrollbar.js
Expand Up @@ -545,7 +545,7 @@ wrap(Axis.prototype, 'init', function (proceed) {
from = unitedMin + range * (1 - this.to);
}

axis.setExtremes(from, to, true, null, e);
axis.setExtremes(from, to, true, false, e);
});
}
});
Expand Down

0 comments on commit 5467267

Please sign in to comment.