mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-11 15:07:08 +00:00
wip: update interpreter
This commit is contained in:
parent
8f9d15db4a
commit
2c4e7beae8
1 changed files with 7 additions and 2 deletions
|
@ -263,7 +263,12 @@ export class Interpreter {
|
||||||
}
|
}
|
||||||
|
|
||||||
// walk the tree to find the real element
|
// walk the tree to find the real element
|
||||||
while (realId == null && target.parentElement != null) {
|
while (realId == null) {
|
||||||
|
// we've reached the root we don't want to send an event
|
||||||
|
if (target.parentElement === null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
target = target.parentElement;
|
target = target.parentElement;
|
||||||
realId = target.getAttribute(`data-dioxus-id`);
|
realId = target.getAttribute(`data-dioxus-id`);
|
||||||
}
|
}
|
||||||
|
@ -326,7 +331,7 @@ export class Interpreter {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function serialize_event(event: Event) {
|
export function serialize_event(event: Event) {
|
||||||
switch (event.type) {
|
switch (event.type) {
|
||||||
case "copy":
|
case "copy":
|
||||||
case "cut":
|
case "cut":
|
||||||
|
|
Loading…
Reference in a new issue