fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Styling node pane meta attribute widget
[fnpeditor.git]
/
modules
/
documentCanvas
/
canvasNode.js
diff --git
a/modules/documentCanvas/canvasNode.js
b/modules/documentCanvas/canvasNode.js
index
5f7efb9
..
72343a4
100644
(file)
--- a/
modules/documentCanvas/canvasNode.js
+++ b/
modules/documentCanvas/canvasNode.js
@@
-50,7
+50,8
@@
CanvasNode.prototype.setClass = function(klass) {
if(klass != this.getClass()) {
var c = this;
this.getMetaAttrs().forEach(function(attr) {
if(klass != this.getClass()) {
var c = this;
this.getMetaAttrs().forEach(function(attr) {
- c.dom.removeAttr('wlxml-meta-' + attr.name);
+ if(!classAttributes.hasMetaAttr(klass, attr.name))
+ c.dom.removeAttr('wlxml-meta-' + attr.name);
});
this.dom.attr('wlxml-class', klass);
}
});
this.dom.attr('wlxml-class', klass);
}