MCPcopy
hub / github.com/Comfy-Org/ComfyUI-Manager / mouseenterHandler

Function mouseenterHandler

comfyui_manager/js/common.js:642–648  ·  view source on GitHub ↗
(e)

Source from the content-addressed store, hash-verified

640
641function initTooltip () {
642 const mouseenterHandler = (e) => {
643 const target = e.target;
644 const text = target.getAttribute('tooltip');
645 if (text) {
646 showTooltip(target, text);
647 }
648 };
649 const mouseleaveHandler = (e) => {
650 const target = e.target;
651 const text = target.getAttribute('tooltip');

Callers

nothing calls this directly

Calls 1

showTooltipFunction · 0.85

Tested by

no test coverage detected