We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Syntac to be correct
When transpiled, minified and uglified code, highcharts-editor.js throws and error
ReferenceError: tabletIcon is not defined
which makes perfect sense when you look at the source of src/core-ui/highed.customizepage.js
151 | phoneIcon = highed.dom.cr('span', '', ''); 152 | tabletIcon = highed.dom.cr('span', '', ''), 153 | tabletIcon = highed.dom.cr('span', '', ''),
Notice ';' after phoneIcon. It should be comma.
0.3.0
The text was updated successfully, but these errors were encountered:
Fixing syntax error and removing unecessary spaces from source code. F…
00d7c39
…ixes highcharts#202
Fixed more syntax error causing minified and concatenated code not to…
faaf9db
… work. Fixes highcharts#202
Successfully merging a pull request may close this issue.
Expected behaviour
Syntac to be correct
Actual behaviour
When transpiled, minified and uglified code, highcharts-editor.js throws and error
ReferenceError: tabletIcon is not defined
which makes perfect sense when you look at the source of src/core-ui/highed.customizepage.js
151 | phoneIcon = highed.dom.cr('span', '', '');
152 | tabletIcon = highed.dom.cr('span', '', ''),
153 | tabletIcon = highed.dom.cr('span', '', ''),
Notice ';' after phoneIcon. It should be comma.
Reproduction steps
Editor version
0.3.0
Affected browser(s)
The text was updated successfully, but these errors were encountered: