joint
joint copied to clipboard
dia.CellView: `removeAttr()` does not remove the attribute from the root element
element.attr('root/test', true);
element.removeAttr('root/test');
// element.findView(paper).el.getAttribute('test') === 'true';
Workaround:
element.attr('root/test', null);
// element.findView(paper).el.hasAttribute('test') === false;