first needed modifications to support react
This commit is contained in:
parent
24b389b12c
commit
4733c51cda
1
dist/frappe-charts.min.css
vendored
Normal file
1
dist/frappe-charts.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
@ -22,6 +22,7 @@ export default [
|
|||||||
plugins: [
|
plugins: [
|
||||||
postcss({
|
postcss({
|
||||||
extensions: [ '.less' ],
|
extensions: [ '.less' ],
|
||||||
|
extract: 'dist/frappe-charts.min.css',
|
||||||
plugins: [
|
plugins: [
|
||||||
nested(),
|
nested(),
|
||||||
cssnext({ warnForDuplicates: false }),
|
cssnext({ warnForDuplicates: false }),
|
||||||
|
|||||||
@ -21,7 +21,7 @@ export default class BaseChart {
|
|||||||
}) {
|
}) {
|
||||||
this.raw_chart_args = arguments[0];
|
this.raw_chart_args = arguments[0];
|
||||||
|
|
||||||
this.parent = document.querySelector(parent);
|
this.parent = typeof parent === 'String' ? document.querySelector(parent) : parent;
|
||||||
this.title = title;
|
this.title = title;
|
||||||
this.subtitle = subtitle;
|
this.subtitle = subtitle;
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user