在鼠标悬停在他们身上时,jointjs中的链接元素会消失。

时间:2014-03-19 14:39:44

标签: javascript jointjs

我使用fsa插件在joint.js中填充FSA应用程序。但是,每当我将鼠标悬停在链接上时,它们就会消失。

这是相关的javascript代码:

function link(source, target, label, maxsize) {
  var vertices = []
  if (source.id == target.id) {
       vertices = [{ x:source.attributes.position.x+10*maxsize, y:source.attributes.position.y-40 }, { x:source.attributes.position.x+10*maxsize, y:source.attributes.position.y+40 }]; 
  }   
  var w = parseInt(label,10);
  if (source.id == init.id || target.id == term.id) 
      label = ""; 
  var cell = new joint.shapes.fsa.Arrow({
      source: { id: source.id },
      target: { id: target.id },
       labels: [{ position: .5, attrs: { text: { text: label || '', 'font-weight': 'bold' } } }], 
      vertices: vertices || []
  }); 
  cell.weight = w;
  return cell;

}

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

这似乎你必须在浏览器控制台上收到一些错误。你能在这里发帖吗?它看起来像是其他错误,而不是您发布的代码。但是,我发现您正在直接访问source.attributes.position.x。请注意,这不是公共API的一部分。你应该使用source.get('position')。x。