From a9f34e3e0cdb72465c28b2e9a92aea65a8a03faa Mon Sep 17 00:00:00 2001 From: Filipe Date: Tue, 4 Apr 2023 19:16:27 -0300 Subject: [PATCH] Remove showText.js --- web/extensions/showText.js | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 web/extensions/showText.js diff --git a/web/extensions/showText.js b/web/extensions/showText.js deleted file mode 100644 index bc20af963..000000000 --- a/web/extensions/showText.js +++ /dev/null @@ -1,35 +0,0 @@ -import { app } from "/scripts/app.js"; -import { ComfyWidgets } from "/scripts/widgets.js"; - -// Displays input text on a node - -app.registerExtension({ - name: "pysssss.ShowText", - async beforeRegisterNodeDef(nodeType, nodeData, app) { - if (nodeData.name === "ShowText") { - // When the node is created we want to add a readonly text widget to display the text - const onNodeCreated = nodeType.prototype.onNodeCreated; - nodeType.prototype.onNodeCreated = function () { - const r = onNodeCreated?.apply(this, arguments); - - const w = ComfyWidgets["STRING"](this, "text", ["STRING", { multiline: true }], app).widget; - w.inputEl.readOnly = true; - w.inputEl.style.opacity = 0.6; - - return r; - }; - - // When the node is executed we will be sent the input text, display this in the widget - const onExecuted = nodeType.prototype.onExecuted; - nodeType.prototype.onExecuted = function (message) { - onExecuted?.apply(this, arguments); - - this.widgets[0].value = message.text; - - if (this.size[1] < 180) { - this.setSize([this.size[0], 180]); - } - }; - } - }, -}); \ No newline at end of file