diff --git a/js/fea/dmaPart.js b/js/fea/dmaPart.js index d9c6b229d4a76652907dfb58646dad2880ec5bc6..33f0028489b2c5f138a2d691a05b90478d7a53ed 100644 --- a/js/fea/dmaPart.js +++ b/js/fea/dmaPart.js @@ -72,11 +72,11 @@ DMAPart.prototype.show = function(){ if (!this.mesh) this._draw(); - this.mesh.visibility = true; + this.mesh.visible = true; }; DMAPart.prototype.hide = function(){ - if (this.mesh) this.mesh.visibility = false; + if (this.mesh) this.mesh.visible = false; }; self.DMAPart = DMAPart;