Browse Source

Merge pull request #1089 in VISUAL/fineui from ~WINDY/fineui:master to master

* commit '850b3873dc68dfd2d1d90ae7e2ad1abf30efadbe':
  BI-50082 fix: class覆盖问题
es6
windy 5 years ago
parent
commit
e5523fe359
  1. 2
      src/widget/numberinterval/numberinterval.js

2
src/widget/numberinterval/numberinterval.js

@ -23,7 +23,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
_defaultConfig: function () {
var conf = BI.NumberInterval.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
extraCls: "bi-number-interval" + (BI.isIE() && BI.getIEVersion() < 10) ? " hack" : "",
extraCls: "bi-number-interval" + ((BI.isIE() && BI.getIEVersion() < 10) ? " hack" : ""),
height: 24,
validation: "valid",
closeMin: true,

Loading…
Cancel
Save