瀏覽代碼

fix missing semicolon

tags/v1.5.8
Frank Felgner 4 年之前
父節點
當前提交
4a9048f59f
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      src/js/charts/BaseChart.js

+ 2
- 2
src/js/charts/BaseChart.js 查看文件

@@ -6,12 +6,12 @@ import { BASE_MEASURES, getExtraHeight, getExtraWidth, getTopOffset, getLeftOffs
import { getColor, isValidColor } from '../utils/colors';
import { runSMILAnimation } from '../utils/animation';
import { downloadFile, prepareForExport } from '../utils/export';
import { deepClone } from '../utils/helpers'
import { deepClone } from '../utils/helpers';

export default class BaseChart {
constructor(parent, options) {
// deepclone options to avoid making changes to orignal object
options = deepClone(options)
options = deepClone(options);

this.parent = typeof parent === 'string'
? document.querySelector(parent)


Loading…
取消
儲存