mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
Fix jquery selector, selecting more than one help pane/popover and displaying incorrectly. (#970)
This commit is contained in:
committed by
Nick O'Leary
parent
9ebca91775
commit
2a2fc80931
@@ -139,7 +139,7 @@ RED.sidebar.info = (function() {
|
||||
}
|
||||
table += "</tbody></table><hr/>";
|
||||
if (!subflowNode && node.type != "comment") {
|
||||
var helpText = $("script[data-help-name|='"+node.type+"']").html()||"";
|
||||
var helpText = $("script[data-help-name$='"+node.type+"']").html()||"";
|
||||
table += '<div class="node-help">'+helpText+"</div>";
|
||||
}
|
||||
if (subflowNode) {
|
||||
|
Reference in New Issue
Block a user