Browse Source

Pull request #1368: 无JIRA任务 增加一个可以外部暴露的方法

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

* commit 'd48a90d124654746185db2dda07402486d999dfb':
  增加一个可以外部暴露的方法
master
guy 4 years ago
parent
commit
6648a59c73
  1. 3
      src/core/base.js

3
src/core/base.js

@ -459,6 +459,9 @@ if (!_global.BI) {
while (BI.prepares && BI.prepares.length > 0) { while (BI.prepares && BI.prepares.length > 0) {
BI.prepares.shift()(); BI.prepares.shift()();
} }
while (_global.___fineuiExposedFunction && _global.___fineuiExposedFunction.length > 0) {
_global.___fineuiExposedFunction.shift()();
}
BI.initialized = true; BI.initialized = true;
}, },

Loading…
Cancel
Save