Browse Source

Pull request #1942: 无JIRA任务 bugfix

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

* commit 'b303641f585d3cad0b1fa06c53a2c3c6f908773b':
  bugfix
es6
guy 3 years ago
parent
commit
bea2062deb
  1. 2
      src/core/h.js

2
src/core/h.js

@ -22,7 +22,7 @@ BI.h = function (type, props, children) {
return children; return children;
} }
if (BI.isFunction(type)) { if (BI.isFunction(type)) {
type = type.xtype; type = type.xtype || type;
} }
if (type === "el") { if (type === "el") {
return BI.extend({ return BI.extend({

Loading…
Cancel
Save