mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Merge branch 'develop' of https://github.com/firefly-iii/firefly-iii into develop
* 'develop' of https://github.com/firefly-iii/firefly-iii: Fix charts in IE
This commit is contained in:
commit
a57554d380
4
public/js/ff/charts.js
vendored
4
public/js/ff/charts.js
vendored
@ -88,7 +88,9 @@ const verticalLinePlugin = {
|
|||||||
|
|
||||||
afterDatasetsDraw: function (chart, easing) {
|
afterDatasetsDraw: function (chart, easing) {
|
||||||
if (chart.config.lineAtIndex) {
|
if (chart.config.lineAtIndex) {
|
||||||
chart.config.lineAtIndex.forEach(pointIndex => this.renderVerticalLine(chart, pointIndex));
|
chart.config.lineAtIndex.forEach(function(pointIndex) {
|
||||||
|
this.renderVerticalLine(chart, pointIndex);
|
||||||
|
}, this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user