Browse Source

BI-28907 fix

es6
windy 6 years ago
parent
commit
8f56f39430
  1. 24
      dist/_fineui.min.js
  2. 6
      dist/bundle.js
  3. 36
      dist/bundle.min.js
  4. 6
      dist/fineui.js
  5. 24
      dist/fineui.min.js
  6. 6
      dist/fix/fix.js

24
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

6
dist/bundle.js vendored

@ -35104,11 +35104,15 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
},
set: function reactiveSetter(newVal) {
var value = childOb ? childOb.model : val;
if (newVal === value || newVal !== newVal && value !== value) {
if (newVal === value || (newVal !== newVal && value !== value)) {
return;
}
val = newVal;
childOb = !shallow && observe(newVal, observer, key);
if (childOb && value && value.__ob__) {
childOb._scopeDeps = value.__ob__._scopeDeps;
childOb._deps = value.__ob__._deps;
}
obj[key] = childOb ? childOb.model : newVal;
notify(model.__ob__, key, dep);
}

36
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

6
dist/fineui.js vendored

@ -35325,11 +35325,15 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
},
set: function reactiveSetter(newVal) {
var value = childOb ? childOb.model : val;
if (newVal === value || newVal !== newVal && value !== value) {
if (newVal === value || (newVal !== newVal && value !== value)) {
return;
}
val = newVal;
childOb = !shallow && observe(newVal, observer, key);
if (childOb && value && value.__ob__) {
childOb._scopeDeps = value.__ob__._scopeDeps;
childOb._deps = value.__ob__._deps;
}
obj[key] = childOb ? childOb.model : newVal;
notify(model.__ob__, key, dep);
}

24
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

6
dist/fix/fix.js vendored

@ -563,11 +563,15 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
},
set: function reactiveSetter(newVal) {
var value = childOb ? childOb.model : val;
if (newVal === value || newVal !== newVal && value !== value) {
if (newVal === value || (newVal !== newVal && value !== value)) {
return;
}
val = newVal;
childOb = !shallow && observe(newVal, observer, key);
if (childOb && value && value.__ob__) {
childOb._scopeDeps = value.__ob__._scopeDeps;
childOb._deps = value.__ob__._deps;
}
obj[key] = childOb ? childOb.model : newVal;
notify(model.__ob__, key, dep);
}

Loading…
Cancel
Save