mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 14:54:16 +00:00
Merge pull request #201 from gbj/custom-events-dont-bubble
Fixes issue #178
This commit is contained in:
commit
54f666c957
1 changed files with 4 additions and 0 deletions
|
@ -60,6 +60,10 @@ impl<E: FromWasmAbi> EventDescriptor for Custom<E> {
|
|||
fn name(&self) -> Cow<'static, str> {
|
||||
self.name.clone()
|
||||
}
|
||||
|
||||
fn bubbles(&self) -> bool {
|
||||
false
|
||||
}
|
||||
}
|
||||
|
||||
impl<E: FromWasmAbi> Custom<E> {
|
||||
|
|
Loading…
Reference in a new issue