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
Please, extend syntax of JS Compiler to make insertions of source laconf into js code directly, like:
var dlg = new WAVE.GUI.Dialog({ header: "Some Infromation", body: /*** div { h2="Header" {} p="Paragraph" {} } ***/ ... });
The text was updated successfully, but these errors were encountered:
Did we not do this yet?
Sorry, something went wrong.
Now you can use: var dlg = new WAVE.GUI.Dialog({ header: "Some Infromation", body: "*#* div { h2="Header" {} p="Paragraph" {} } *#*" ... });
Bug is found: statement with single quote ( '*#* ... *#*') is not parsed. And multi-line code with "\" line break doesn't work.
panagushin
No branches or pull requests
Please, extend syntax of JS Compiler to make insertions of source laconf into js code directly, like:
The text was updated successfully, but these errors were encountered: