windy 6 years ago
parent
commit
8fab8aaee0
  1. 4
      dist/base.js
  2. 4
      dist/bundle.ie.js
  3. 4
      dist/bundle.ie.min.js
  4. 4
      dist/bundle.js
  5. 58
      dist/bundle.min.js
  6. 4
      dist/fineui.ie.js
  7. 4
      dist/fineui.js
  8. 4
      dist/fineui_without_jquery_polyfill.js
  9. 2
      dist/utils.min.js
  10. 4
      src/base/single/single.js

4
dist/base.js vendored

@ -401,9 +401,7 @@ BI.Single = BI.inherit(BI.Widget, {
}
},
_clearTimeOut: function() {
console.log(this.showTimeout);
console.log(BI.isNotNull(this.showTimeout));
_clearTimeOut: function () {
if (BI.isNotNull(this.showTimeout)) {
clearTimeout(this.showTimeout);
this.showTimeout = null;

4
dist/bundle.ie.js vendored

@ -35487,9 +35487,7 @@ BI.Single = BI.inherit(BI.Widget, {
}
},
_clearTimeOut: function() {
console.log(this.showTimeout);
console.log(BI.isNotNull(this.showTimeout));
_clearTimeOut: function () {
if (BI.isNotNull(this.showTimeout)) {
clearTimeout(this.showTimeout);
this.showTimeout = null;

4
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/bundle.js vendored

@ -35891,9 +35891,7 @@ BI.Single = BI.inherit(BI.Widget, {
}
},
_clearTimeOut: function() {
console.log(this.showTimeout);
console.log(BI.isNotNull(this.showTimeout));
_clearTimeOut: function () {
if (BI.isNotNull(this.showTimeout)) {
clearTimeout(this.showTimeout);
this.showTimeout = null;

58
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/fineui.ie.js vendored

@ -35729,9 +35729,7 @@ BI.Single = BI.inherit(BI.Widget, {
}
},
_clearTimeOut: function() {
console.log(this.showTimeout);
console.log(BI.isNotNull(this.showTimeout));
_clearTimeOut: function () {
if (BI.isNotNull(this.showTimeout)) {
clearTimeout(this.showTimeout);
this.showTimeout = null;

4
dist/fineui.js vendored

@ -36133,9 +36133,7 @@ BI.Single = BI.inherit(BI.Widget, {
}
},
_clearTimeOut: function() {
console.log(this.showTimeout);
console.log(BI.isNotNull(this.showTimeout));
_clearTimeOut: function () {
if (BI.isNotNull(this.showTimeout)) {
clearTimeout(this.showTimeout);
this.showTimeout = null;

4
dist/fineui_without_jquery_polyfill.js vendored

@ -24643,9 +24643,7 @@ BI.Single = BI.inherit(BI.Widget, {
}
},
_clearTimeOut: function() {
console.log(this.showTimeout);
console.log(BI.isNotNull(this.showTimeout));
_clearTimeOut: function () {
if (BI.isNotNull(this.showTimeout)) {
clearTimeout(this.showTimeout);
this.showTimeout = null;

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

4
src/base/single/single.js

@ -59,9 +59,7 @@ BI.Single = BI.inherit(BI.Widget, {
}
},
_clearTimeOut: function() {
console.log(this.showTimeout);
console.log(BI.isNotNull(this.showTimeout));
_clearTimeOut: function () {
if (BI.isNotNull(this.showTimeout)) {
clearTimeout(this.showTimeout);
this.showTimeout = null;

Loading…
Cancel
Save