Fix jquery selector, selecting more than one help pane/popover and displaying incorrectly. (#970)

This commit is contained in:
telogis-nodered
2016-08-25 21:44:23 +12:00
committed by Nick O'Leary
parent 9ebca91775
commit 2a2fc80931
2 changed files with 3 additions and 3 deletions

View File

@@ -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) {