Commit a3a7e22c authored by 向偲彪's avatar 向偲彪
Browse files

fix

parent 353379d4
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -499,6 +499,16 @@ JSP.prototype.removeNodes = function ($id) {

  // callback onRemoveNodes event
  this.options && this.options.onRemoveNodes && this.options.onRemoveNodes($id)
  let connects = []
  _.map(this.JspInstance.getConnections(), v => {
    connects.push({
      endPointSourceId: v.sourceId,
      endPointTargetId: v.targetId,
      label: v._jsPlumb.overlays.label.canvas.innerText
    })
  })
  // Storage line dependence
  store.commit('dag/setConnects', connects)
}

/**