mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
17 lines
314 B
Plaintext
17 lines
314 B
Plaintext
static function handleAttach(color, event, node) {
|
|
window.events.push({
|
|
color: color,
|
|
event: event,
|
|
node: node
|
|
});
|
|
}
|
|
|
|
class {}
|
|
|
|
<div>
|
|
<ul>
|
|
<for|color| of=input.colors>
|
|
<li key=color on-attach(handleAttach, color)>${color}</li>
|
|
</for>
|
|
</ul>
|
|
</div> |