show
show: DebouncedFunc<(Anonymous function)> = debounce(async (e: MouseEvent, target?: FabricObject) => {if (!this.openContextmenu) {return;}const { onContext } = this.handler;if (!onContext) {return;}const content = await onContext(e, target);if (content === null || content === undefined) {return;}this.openContextmenu({x: e.clientX,y: e.clientY,placement: 'right',content,target: target ?? null,});}, 100)
Hide context menu