|
@ -120,11 +120,11 @@ Group.prototype.setData = function(data) { |
|
|
|
|
|
|
|
|
// update style
|
|
|
// update style
|
|
|
if (this.style) { |
|
|
if (this.style) { |
|
|
util.removeCssText(this.dom.label, 'vis-' + this.style); |
|
|
|
|
|
|
|
|
util.removeCssText(this.dom.label, this.style); |
|
|
this.style = null; |
|
|
this.style = null; |
|
|
} |
|
|
} |
|
|
if (data && data.style) { |
|
|
if (data && data.style) { |
|
|
util.addCssText(this.dom.label, 'vis-' + data.style); |
|
|
|
|
|
|
|
|
util.addCssText(this.dom.label, data.style); |
|
|
this.style = data.style; |
|
|
this.style = data.style; |
|
|
} |
|
|
} |
|
|
}; |
|
|
}; |
|
|