feat: improve help view
Some checks failed
Deploy to GitHub Pages / build_site (push) Failing after 1m24s

This commit is contained in:
2024-04-26 19:04:54 +02:00
parent 9d1b631c32
commit 98a4e6e34d
20 changed files with 243 additions and 170 deletions

View File

@@ -673,6 +673,8 @@
});
function handleMouseUp(event: MouseEvent) {
if (!mouseDown) return;
const activeNode = manager.getNode($activeNodeId);
const clickedNodeId = getNodeIdFromEvent(event);
@@ -870,7 +872,7 @@
});
</script>
<svelte:window on:mousemove={handleMouseMove} />
<svelte:window on:mousemove={handleMouseMove} on:mouseup={handleMouseUp} />
<div
on:wheel={handleMouseScroll}
@@ -881,7 +883,6 @@
tabindex="0"
bind:clientWidth={width}
bind:clientHeight={height}
on:mouseup={handleMouseUp}
on:dragenter={handleDragEnter}
on:dragover={handlerDragOver}
on:dragexit={handleDragEnd}