我有一个需要更改的自定义形状:
joint.shapes.jointJSproject.CustomNode = joint.shapes.jointJSproject.SquareNode.extend({
defaults: joint.util.deepSupplement({
attrs: {
icon: 'custom',
image: {
'xlink:href': $.createURL('some url')
}}
}, joint.shapes.jointJSproject.SquareNode.prototype.defaults)
});
我想做的是更改属性图像,以便如果第一个URL为空,则第二个URL为空。
这可能与JointJS有关吗?