Browse Source

无jira任务 tab showIndex function

es6
imp 3 years ago
parent
commit
462b348957
  1. 2
      src/base/combination/tab.js

2
src/base/combination/tab.js

@ -92,7 +92,7 @@ BI.Tab = BI.inherit(BI.Widget, {
created: function () {
var o = this.options;
if (o.showIndex !== false) {
this.setSelect(o.showIndex);
this.setSelect(BI.isFunction(o.showIndex) ? o.showIndex() : o.showIndex);
}
},

Loading…
Cancel
Save