mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	Fix connecting wires to subflow status or io ports on touchscreen
This commit is contained in:
		| @@ -2328,18 +2328,45 @@ RED.view = (function() { | ||||
|         document.body.style.cursor = ""; | ||||
|         if (mouse_mode == RED.state.JOINING || mouse_mode == RED.state.QUICK_JOINING) { | ||||
|             if (typeof TouchEvent != "undefined" && evt instanceof TouchEvent) { | ||||
|                 var found = false; | ||||
|                 RED.nodes.eachNode(function(n) { | ||||
|                     if (n.z == RED.workspaces.active()) { | ||||
|                         var hw = n.w/2; | ||||
|                         var hh = n.h/2; | ||||
|                         if (n.x-hw<mouse_position[0] && n.x+hw> mouse_position[0] && | ||||
|                             n.y-hh<mouse_position[1] && n.y+hh>mouse_position[1]) { | ||||
|                                 found = true; | ||||
|                                 mouseup_node = n; | ||||
|                                 portType = mouseup_node.inputs>0?PORT_TYPE_INPUT:PORT_TYPE_OUTPUT; | ||||
|                                 portIndex = 0; | ||||
|                         } | ||||
|                     } | ||||
|                 }); | ||||
|                 if (!found && activeSubflow) { | ||||
|                     var subflowPorts = []; | ||||
|                     if (activeSubflow.status) { | ||||
|                         subflowPorts.push(activeSubflow.status) | ||||
|                     } | ||||
|                     if (activeSubflow.in) { | ||||
|                         subflowPorts = subflowPorts.concat(activeSubflow.in) | ||||
|                     } | ||||
|                     if (activeSubflow.out) { | ||||
|                         subflowPorts = subflowPorts.concat(activeSubflow.out) | ||||
|                     } | ||||
|                     for (var i=0;i<subflowPorts.length;i++) { | ||||
|                         var n = subflowPorts[i]; | ||||
|                         var hw = n.w/2; | ||||
|                         var hh = n.h/2; | ||||
|                         if (n.x-hw<mouse_position[0] && n.x+hw> mouse_position[0] && | ||||
|                             n.y-hh<mouse_position[1] && n.y+hh>mouse_position[1]) { | ||||
|                                 found = true; | ||||
|                                 mouseup_node = n; | ||||
|                                 portType = mouseup_node.direction === "in"?PORT_TYPE_OUTPUT:PORT_TYPE_INPUT; | ||||
|                                 portIndex = 0; | ||||
|                             break; | ||||
|                         } | ||||
|                     } | ||||
|                 } | ||||
|             } else { | ||||
|                 mouseup_node = d; | ||||
|             } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user