Fix deprecated ui.js import in common.js

This commit is contained in:
TokenSpender 2026-05-03 07:08:33 -04:00 committed by GitHub
parent 336a945ff8
commit fd8d458eaf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,8 +1,15 @@
import { app } from "../../scripts/app.js";
import { api } from "../../scripts/api.js";
import { $el, ComfyDialog } from "../../scripts/ui.js";
import { getBestPosition, getPositionStyle, getRect } from './popover-helper.js';
// === SHIM FOR NEW COMFYUI (removes ui.js warning) ===
let $el, ComfyDialog;
if (window?.comfyAPI?.ui) {
({ $el, ComfyDialog } = window.comfyAPI.ui);
} else {
({ $el, ComfyDialog } = await import("../../scripts/ui.js"));
}
function internalCustomConfirm(message, confirmMessage, cancelMessage) {
return new Promise((resolve) => {
@ -667,4 +674,4 @@ function initTooltip () {
document.body.addEventListener('mouseleave', mouseleaveHandler, true);
}
initTooltip();
initTooltip();