{"id":50839774,"url":"https://github.com/laurigates/comfyui-touch-tooltips","last_synced_at":"2026-06-14T06:04:43.843Z","repository":{"id":363140921,"uuid":"1261902487","full_name":"laurigates/comfyui-touch-tooltips","owner":"laurigates","description":"Long-press tooltips for ComfyUI widgets and sockets on touch devices","archived":false,"fork":false,"pushed_at":"2026-06-07T16:22:01.000Z","size":86,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-07T17:21:20.507Z","etag":null,"topics":["comfyui","comfyui-nodes","managed-by-opentofu","mobile","tooltips","touch"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/laurigates.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-06-07T10:03:18.000Z","updated_at":"2026-06-07T16:21:57.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/laurigates/comfyui-touch-tooltips","commit_stats":null,"previous_names":["laurigates/comfyui-touch-tooltips"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/laurigates/comfyui-touch-tooltips","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/laurigates%2Fcomfyui-touch-tooltips","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/laurigates%2Fcomfyui-touch-tooltips/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/laurigates%2Fcomfyui-touch-tooltips/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/laurigates%2Fcomfyui-touch-tooltips/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/laurigates","download_url":"https://codeload.github.com/laurigates/comfyui-touch-tooltips/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/laurigates%2Fcomfyui-touch-tooltips/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34310805,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-14T02:00:07.365Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["comfyui","comfyui-nodes","managed-by-opentofu","mobile","tooltips","touch"],"created_at":"2026-06-14T06:04:43.209Z","updated_at":"2026-06-14T06:04:43.836Z","avatar_url":"https://github.com/laurigates.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# comfyui-touch-tooltips\n\nLong-press tooltips for ComfyUI widgets, sockets, and node titles on touch devices.\n\n\u003e Part of a family of mobile-first ComfyUI usability packs\n\u003e ([gallery-loader](https://github.com/laurigates/comfyui-gallery-loader),\n\u003e [sampler-info](https://github.com/laurigates/comfyui-sampler-info),\n\u003e [touch-resize](https://github.com/laurigates/comfyui-touch-resize)):\n\u003e touch-friendly gestures and HTML popovers that replace clunky native\n\u003e LiteGraph interactions, additive and non-clobbering.\n\n![A long-press popover showing the seed widget's tooltip on a KSampler node](docs/tooltip.png)\n\n*Long-press a widget, socket, or node title on a touch device to read its tooltip.*\n\n## Install\n\nFrom the Comfy Registry (ships the prebuilt `web/dist/`), or from source:\n\n```sh\ncd \u003cComfyUI\u003e/custom_nodes\ngit clone https://github.com/laurigates/comfyui-touch-tooltips\ncd comfyui-touch-tooltips\nbun install\nbun run build      # emit web/dist/ (git-ignored; ComfyUI serves it)\n```\n\nRestart ComfyUI; hard-refresh the browser tab (Ctrl+Shift+R / Cmd+Shift+R).\n\n## What it does\n\nOn a desktop you hover a widget to read its tooltip. On a touch device there is\nno hover, so that metadata is invisible. This pack restores it: a **long-press**\n(hold ~450ms with less than ~10px of finger movement) on the LiteGraph canvas\nhit-tests whatever is under your finger — a node widget, an input/output socket,\nor a node title — and surfaces a popover with that element's existing tooltip\nmetadata (its label, type, and tooltip text). **Tap away or press Escape** to\ndismiss it.\n\nThe popover reads metadata that is already there (widget options, `INPUT_TYPES`\nspecs, socket and node-def tooltips); it never fabricates text. When an element\nhas no tooltip, the popover says so (\"(no tooltip)\") rather than showing\nnothing. It is **touch-only by default** so mouse hover behaves exactly as\nbefore.\n\n## Compatibility\n\n- ComfyUI: modern Vue frontend (`comfyui-frontend-package \u003e= 1.40`) for\n  the canvas pointer-event model (`app.canvas`, `convertEventToCanvasOffset`,\n  `graph.getNodeOnPos`).\n- Frontend changes (JS/CSS) take effect on browser hard-refresh — no restart.\n\n## License\n\nMIT — see `LICENSE`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flaurigates%2Fcomfyui-touch-tooltips","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flaurigates%2Fcomfyui-touch-tooltips","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flaurigates%2Fcomfyui-touch-tooltips/lists"}