Merge pull request #25 from tobiaslins/support-react
first needed modifications to support react
This commit is contained in:
commit
3a52a56171
3
.gitignore
vendored
3
.gitignore
vendored
@ -2,4 +2,5 @@
|
||||
node_modules
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
.DS_Store
|
||||
yarn.lock
|
||||
|
||||
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
@ -28,6 +28,7 @@ export default [
|
||||
plugins: [
|
||||
postcss({
|
||||
extensions: [ '.less' ],
|
||||
extract: 'dist/frappe-charts.min.css',
|
||||
plugins: [
|
||||
nested(),
|
||||
cssnext({ warnForDuplicates: false }),
|
||||
|
||||
@ -22,7 +22,7 @@ export default class BaseChart {
|
||||
}) {
|
||||
this.raw_chart_args = arguments[0];
|
||||
|
||||
this.parent = document.querySelector(parent);
|
||||
this.parent = typeof parent === 'String' ? document.querySelector(parent) : parent;
|
||||
this.title = title;
|
||||
this.subtitle = subtitle;
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user