Merge pull request #201 from gbj/custom-events-dont-bubble

Fixes issue #178
This commit is contained in:
Greg Johnston 2022-12-30 12:20:48 -05:00 committed by GitHub
commit 54f666c957
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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> {