|
|
|
|
|
by Raynos
4405 days ago
|
|
This seems similar to a module I wrote called [html-delegator][1]. The separation of thing that emits named event and listener is a good idea. I Actually moved away from the HTML attribute DSL and started putting named events in my virtual dom instead (using [mercury][2]) The important part of this approach that is not shown in js action is to ensure you emit data structures instead of dom event objects to the listeners. [1]: https://github.com/Raynos/html-delegator/blob/master/README.md
[2]: https://github.com/Raynos/mercury
|
|