_hyperscript
_hyperscript copied to clipboard
Flat mapping on pseudo commands
Is this usage of pseudo-commands implemented? If not it will be great to have it.
<button _="on click click() to <input/>">Select All</button>
<input type="checkbox" name="test" />
<input type="checkbox" name="test" />
<input type="checkbox" name="test" />
<input type="checkbox" name="test" />
Right now I'm doing this to perform the same action:
repeat in <input/>
it.click()
end
Thanks!