fix(lint): Use const

This commit is contained in:
syuilo 2020-04-20 21:36:58 +09:00
parent 2ee0e07bb6
commit 0a4d119d86
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ import { values, utils } from '@syuilo/aiscript';
Chart.pluginService.register({
beforeDraw: function (chart, easing) {
if (chart.config.options.chartArea && chart.config.options.chartArea.backgroundColor) {
var ctx = chart.chart.ctx;
const ctx = chart.chart.ctx;
ctx.save();
ctx.fillStyle = chart.config.options.chartArea.backgroundColor;
ctx.fillRect(0, 0, chart.chart.width, chart.chart.height);