Connector extension should use configured defaults
This commit is contained in:
parent
3e6d7faec2
commit
77cfc0d2e3
|
@ -14,6 +14,7 @@ svgEditor.addExtension("Connector", function(S) {
|
||||||
getElem = S.getElem,
|
getElem = S.getElem,
|
||||||
addElem = S.addSvgElementFromJson,
|
addElem = S.addSvgElementFromJson,
|
||||||
selManager = S.selectorManager,
|
selManager = S.selectorManager,
|
||||||
|
curConfig = svgEditor.curConfig,
|
||||||
started = false,
|
started = false,
|
||||||
start_x,
|
start_x,
|
||||||
start_y,
|
start_y,
|
||||||
|
@ -307,10 +308,10 @@ svgEditor.addExtension("Connector", function(S) {
|
||||||
"attr": {
|
"attr": {
|
||||||
"id": getNextId(),
|
"id": getNextId(),
|
||||||
"points": (x+','+y+' '+x+','+y+' '+start_x+','+start_y),
|
"points": (x+','+y+' '+x+','+y+' '+start_x+','+start_y),
|
||||||
"stroke": '#000',
|
"stroke": '#' + curConfig.initStroke.color,
|
||||||
"stroke-width": 3,
|
"stroke-width": (!start_elem.stroke_width || start_elem.stroke_width == 0) ? curConfig.initStroke.width : start_elem.stroke_width,
|
||||||
"fill": "none",
|
"fill": "none",
|
||||||
"opacity": .5,
|
"opacity": curConfig.initStroke.opacity,
|
||||||
"style": "pointer-events:none"
|
"style": "pointer-events:none"
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue