guy 7 years ago
parent
commit
a2b9186c66
  1. 2
      bi/core.js
  2. 2
      demo/js/fix-2.0/demo.js
  3. 2
      dist/bundle.js
  4. 2
      dist/core.js
  5. 2
      dist/demo.js
  6. 3
      dist/fix/fix.js
  7. 2
      src/core/base.js

2
bi/core.js

@ -11592,7 +11592,7 @@ if (!window.BI) {
overrides = sp;
sp = sb;
sb = function () {
sp.apply(this, arguments);
return sp.apply(this, arguments);
};
}
var F = function () {

2
demo/js/fix-2.0/demo.js

@ -20,7 +20,7 @@
var Store = BI.inherit(Fix.VM, {
_init: function () {
this.comp = new Computed(model).model;
this.comp = new Computed(model);
},
computed: {
b: function () {

2
dist/bundle.js vendored

@ -11643,7 +11643,7 @@ if (!window.BI) {
overrides = sp;
sp = sb;
sb = function () {
sp.apply(this, arguments);
return sp.apply(this, arguments);
};
}
var F = function () {

2
dist/core.js vendored

@ -11592,7 +11592,7 @@ if (!window.BI) {
overrides = sp;
sp = sb;
sb = function () {
sp.apply(this, arguments);
return sp.apply(this, arguments);
};
}
var F = function () {

2
dist/demo.js vendored

@ -10208,7 +10208,7 @@ BI.shortcut("demo.tmp", Demo.Func);
var Store = BI.inherit(Fix.VM, {
_init: function () {
this.comp = new Computed(model).model;
this.comp = new Computed(model);
},
computed: {
b: function () {

3
dist/fix/fix.js vendored

@ -938,6 +938,9 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
initComputed(this, this.computed);
initMethods(this, this.actions);
this._init();
if (this.$$model) {
return this.model;
}
}
VM.prototype.$watch = function $watch(expOrFn, cb, options) {

2
src/core/base.js

@ -442,7 +442,7 @@ if (!window.BI) {
overrides = sp;
sp = sb;
sb = function () {
sp.apply(this, arguments);
return sp.apply(this, arguments);
};
}
var F = function () {

Loading…
Cancel
Save