Lutz Roeder 4 лет назад
Родитель
Сommit
60857f250d
1 измененных файлов с 1 добавлено и 2 удалено
  1. 1 2
      source/mslite.js

+ 1 - 2
source/mslite.js

@@ -221,9 +221,8 @@ mslite.Attribute = class {
     constructor(schema, attrName, value) {
         this._type = null;
         this._name = attrName;
-        this._visible = true;
+        this._visible = false;
         this._value = ArrayBuffer.isView(value) ? Array.from(value) : value;
-
         if (schema) {
             if (schema.type) {
                 this._type = schema.type;