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
In Azure I've seen several exceptions Uncaught SyntaxError: Unexpected token 'export' coming from:
Uncaught SyntaxError: Unexpected token 'export'
lineNumber 1 errorSrc window.onerror@https://foo.com/_content/BlazorColorPicker/colorpicker.js:1:1 url https://foo.com/_content/BlazorColorPicker/colorpicker.js columnNumber 1 message: Uncaught SyntaxError: Unexpected token 'export' typeName SyntaxError
when I browse to https://foo.com/_content/BlazorColorPicker/colorpicker.js I see:
https://foo.com/_content/BlazorColorPicker/colorpicker.js
export function SetFocusTo2 (element) { if (element instanceof HTMLElement) { element.focus(); } }
I guess the export keyword of the function is giving this issue.
export
.net 7 blazor server BlazorColorPicker (2.3.0)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In Azure I've seen several exceptions
Uncaught SyntaxError: Unexpected token 'export'
coming from:when I browse to
https://foo.com/_content/BlazorColorPicker/colorpicker.js
I see:I guess the
export
keyword of the function is giving this issue..net 7
blazor server
BlazorColorPicker (2.3.0)
The text was updated successfully, but these errors were encountered: