Unable to create a straight connection in JSPlumb

I am trying to create a direct connection in JSPlumb between two endpoints. When I try to connect to an endpoint, the source point is dragged instead of creating a direct connection.

Here's the fiddle: http://jsfiddle.net/dutchman71/aMksZ/2/

Any help was appreciated.

            var endpointOptions = { 
                    anchor:"BottomCenter",
                    maxConnections:1, 
                    isSource:true, 
                    isTarget:true, 
                    endpoint:["Dot", {radius:5}], 
                    paintStyle:{fillStyle:"#5b9ada"},
                    connectorStyle : {  lineWidth: 3, strokeStyle:"#5b9ada" },
                    connector : new jsPlumb.Connectors.Straight(),
                    setDragAllowedWhenFull:true,
                    connectorOverlays:[ 
                        [ "Arrow", { width:20, length:30, location:1, id:"arrow" } ], 
                        [ "Label", { label:"", id:"label" } ]
                    ]               
                    }

            jsPlumb.bind("ready", function() {

                    jsPlumb.addEndpoint('block1', endpointOptions);

                    jsPlumb.addEndpoint('block2', endpointOptions);

                    jsPlumb.draggable('block1');
                    jsPlumb.draggable('block2');
            });
+5
source share
1 answer

Yes, it seems I found the answer (see docs ). Replace this line:

connector: new jsPlumb.Connectors.Straight()

with this line:

connector: ["Straight"]
+7
source

All Articles