NR5: info popover does not support node.info() - Core Development - Node-RED Forum
Hi There, Question: should the info popover support node.info(), i.e., that the info attribute of the node is a function? Basically the info panel supports info attribute being a function: if (node._def && node._def.info) { var info = node._def.info; var textInfo = (typeof info === "function" ? info.call(node) : info); infoText = infoText + RED.utils.renderMarkdown(textInfo); } if (node.info) { ...