Browse Source

Merge pull request #160 in ~GUY/fineui from ~WINDY/fineui:master to master

* commit '90db80ccef32c1e94982ab64c890098b2182d874':
  IE8
es6
windy 7 years ago
parent
commit
de110bcbef
  1. 2650
      bi/base.js
  2. 2
      bi/core.js
  3. 2
      dist/bundle.js
  4. 2
      dist/bundle.min.js
  5. 2
      dist/core.js
  6. 2
      src/core/model.js

2650
bi/base.js

File diff suppressed because it is too large Load Diff

2
bi/core.js

@ -5084,7 +5084,7 @@ BI.Widget = BI.inherit(BI.OB, {
return this.attributes[attr];
}
var sta = _.result(this, "_static");
return BI.isFunction(sta[attr]) ? sta[attr].apply(this, BI.values(arguments).slice(1)) : sta[attr];
return BI.isFunction(sta[attr]) ? sta[attr].apply(this, Array.prototype.slice.apply(arguments, [1])) : sta[attr];
},
get: function () {

2
dist/bundle.js vendored

@ -15124,7 +15124,7 @@ BI.Widget = BI.inherit(BI.OB, {
return this.attributes[attr];
}
var sta = _.result(this, "_static");
return BI.isFunction(sta[attr]) ? sta[attr].apply(this, BI.values(arguments).slice(1)) : sta[attr];
return BI.isFunction(sta[attr]) ? sta[attr].apply(this, Array.prototype.slice.apply(arguments, [1])) : sta[attr];
},
get: function () {

2
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/core.js vendored

@ -15073,7 +15073,7 @@ BI.Widget = BI.inherit(BI.OB, {
return this.attributes[attr];
}
var sta = _.result(this, "_static");
return BI.isFunction(sta[attr]) ? sta[attr].apply(this, BI.values(arguments).slice(1)) : sta[attr];
return BI.isFunction(sta[attr]) ? sta[attr].apply(this, Array.prototype.slice.apply(arguments, [1])) : sta[attr];
},
get: function () {

2
src/core/model.js

@ -290,7 +290,7 @@ BI.Model = BI.inherit(BI.M, {
return this.attributes[attr];
}
var sta = _.result(this, "_static");
return BI.isFunction(sta[attr]) ? sta[attr].apply(this, BI.values(arguments).slice(1)) : sta[attr];
return BI.isFunction(sta[attr]) ? sta[attr].apply(this, Array.prototype.slice.apply(arguments, [1])) : sta[attr];
},
get: function () {

Loading…
Cancel
Save