_hyperscript icon indicating copy to clipboard operation
_hyperscript copied to clipboard

Flat mapping on pseudo commands

Open tiago156 opened this issue 2 years ago • 0 comments

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!

tiago156 avatar Aug 25 '23 18:08 tiago156