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
call
Assume there exists a <dialog id="modal" /> on the page.
<dialog id="modal" />
If I try:
<button _="on click show() the #modal"> Show Modal </button>
Then this doesn't work, because show is a command, and therefore the () are syntax errors.
show
()
I therefore need to instead do:
<button _="on click call show() of #modal"> Show Modal </button>
In order for it do be correctly interpreted. This is fine, to disambiguate. But what about supporting:
<button _="on click call show() on the #modal"> Show Modal </button>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Assume there exists a
<dialog id="modal" />
on the page.If I try:
Then this doesn't work, because
show
is a command, and therefore the()
are syntax errors.I therefore need to instead do:
In order for it do be correctly interpreted. This is fine, to disambiguate. But what about supporting:
The text was updated successfully, but these errors were encountered: