Browse Source

Pull request #2566: 无JIRA任务 bugfix

Merge in VISUAL/fineui from ~GUY/fineui:master to master

* commit '24fd095b4dba41f4290fdbb5a453d80e31e5028e':
  bugfix
es6
guy 3 years ago
parent
commit
cfa740c153
  1. 2
      src/core/3.ob.js

2
src/core/3.ob.js

@ -53,7 +53,7 @@
} }
var defaultProps = extend(this._defaultConfig(config), props); var defaultProps = extend(this._defaultConfig(config), props);
var modifiedDefaultProps = (config && config.type && BI.OB.configFunctions[config.type + ".props"]) ? BI.reduce(BI.OB.configFunctions[config.type + ".props"], function (value, conf, index) { var modifiedDefaultProps = (config && config.type && BI.OB.configFunctions[config.type + ".props"]) ? BI.reduce(BI.OB.configFunctions[config.type + ".props"], function (value, conf, index) {
return extend({}, conf, value.fn(defaultProps, config, value.opt)); return extend(conf, value.fn(defaultProps, config, value.opt));
}, {}) : null; }, {}) : null;
this.options = extend(defaultProps, modifiedDefaultProps, config); this.options = extend(defaultProps, modifiedDefaultProps, config);
}, },

Loading…
Cancel
Save