1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Merge pull request #379 from hindessm/fix-undefined-class-on-labels

Correct logic to avoid 'undefined' label style being inserted.
This commit is contained in:
Nick O'Leary 2014-09-05 23:12:55 +01:00
commit 6076be011a

View File

@ -1209,7 +1209,7 @@ RED.view = (function() {
.attr('class',function(d){
return 'node_label'+
(d._def.align?' node_label_'+d._def.align:'')+
(d._def.label?' '+(typeof d._def.labelStyle == "function" ? d._def.labelStyle.call(d):d._def.labelStyle):'') ;
(d._def.labelStyle?' '+(typeof d._def.labelStyle == "function" ? d._def.labelStyle.call(d):d._def.labelStyle):'') ;
});
thisNode.selectAll(".node_tools").attr("x",function(d){return d.w-35;}).attr("y",function(d){return d.h-20;});