Browse Source

BI-36415 二级菜单展不开

es6
windy 6 years ago
parent
commit
290b0944b0
  1. 4
      dist/base.js
  2. 4
      dist/bundle.ie.js
  3. 48
      dist/bundle.ie.min.js
  4. 4
      dist/bundle.js
  5. 58
      dist/bundle.min.js
  6. 4
      dist/fineui.ie.js
  7. 48
      dist/fineui.ie.min.js
  8. 4
      dist/fineui.js
  9. 56
      dist/fineui.min.js
  10. 4
      dist/fineui_without_jquery_polyfill.js
  11. 2
      dist/utils.min.js
  12. 4
      src/base/single/single.js

4
dist/base.js vendored

@ -431,7 +431,6 @@ BI.Single = BI.inherit(BI.Widget, {
}
}, 500);
}
e.stopPropagation();
});
this.element.on("mousemove.title" + this.getName(), function (e) {
self._e = e;
@ -458,13 +457,12 @@ BI.Single = BI.inherit(BI.Widget, {
}
}, 500);
e.stopPropagation();
});
this.element.on("mouseleave.title" + this.getName(), function (e) {
self._e = null;
self._clearTimeOut();
self._hideTooltip();
e.stopPropagation();
});
this._hoverBinded = true;
}

4
dist/bundle.ie.js vendored

@ -35517,7 +35517,6 @@ BI.Single = BI.inherit(BI.Widget, {
}
}, 500);
}
e.stopPropagation();
});
this.element.on("mousemove.title" + this.getName(), function (e) {
self._e = e;
@ -35544,13 +35543,12 @@ BI.Single = BI.inherit(BI.Widget, {
}
}, 500);
e.stopPropagation();
});
this.element.on("mouseleave.title" + this.getName(), function (e) {
self._e = null;
self._clearTimeOut();
self._hideTooltip();
e.stopPropagation();
});
this._hoverBinded = true;
}

48
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/bundle.js vendored

@ -35921,7 +35921,6 @@ BI.Single = BI.inherit(BI.Widget, {
}
}, 500);
}
e.stopPropagation();
});
this.element.on("mousemove.title" + this.getName(), function (e) {
self._e = e;
@ -35948,13 +35947,12 @@ BI.Single = BI.inherit(BI.Widget, {
}
}, 500);
e.stopPropagation();
});
this.element.on("mouseleave.title" + this.getName(), function (e) {
self._e = null;
self._clearTimeOut();
self._hideTooltip();
e.stopPropagation();
});
this._hoverBinded = true;
}

58
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/fineui.ie.js vendored

@ -35759,7 +35759,6 @@ BI.Single = BI.inherit(BI.Widget, {
}
}, 500);
}
e.stopPropagation();
});
this.element.on("mousemove.title" + this.getName(), function (e) {
self._e = e;
@ -35786,13 +35785,12 @@ BI.Single = BI.inherit(BI.Widget, {
}
}, 500);
e.stopPropagation();
});
this.element.on("mouseleave.title" + this.getName(), function (e) {
self._e = null;
self._clearTimeOut();
self._hideTooltip();
e.stopPropagation();
});
this._hoverBinded = true;
}

48
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/fineui.js vendored

@ -36163,7 +36163,6 @@ BI.Single = BI.inherit(BI.Widget, {
}
}, 500);
}
e.stopPropagation();
});
this.element.on("mousemove.title" + this.getName(), function (e) {
self._e = e;
@ -36190,13 +36189,12 @@ BI.Single = BI.inherit(BI.Widget, {
}
}, 500);
e.stopPropagation();
});
this.element.on("mouseleave.title" + this.getName(), function (e) {
self._e = null;
self._clearTimeOut();
self._hideTooltip();
e.stopPropagation();
});
this._hoverBinded = true;
}

56
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/fineui_without_jquery_polyfill.js vendored

@ -24673,7 +24673,6 @@ BI.Single = BI.inherit(BI.Widget, {
}
}, 500);
}
e.stopPropagation();
});
this.element.on("mousemove.title" + this.getName(), function (e) {
self._e = e;
@ -24700,13 +24699,12 @@ BI.Single = BI.inherit(BI.Widget, {
}
}, 500);
e.stopPropagation();
});
this.element.on("mouseleave.title" + this.getName(), function (e) {
self._e = null;
self._clearTimeOut();
self._hideTooltip();
e.stopPropagation();
});
this._hoverBinded = true;
}

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

4
src/base/single/single.js

@ -89,7 +89,6 @@ BI.Single = BI.inherit(BI.Widget, {
}
}, 500);
}
e.stopPropagation();
});
this.element.on("mousemove.title" + this.getName(), function (e) {
self._e = e;
@ -116,13 +115,12 @@ BI.Single = BI.inherit(BI.Widget, {
}
}, 500);
e.stopPropagation();
});
this.element.on("mouseleave.title" + this.getName(), function (e) {
self._e = null;
self._clearTimeOut();
self._hideTooltip();
e.stopPropagation();
});
this._hoverBinded = true;
}

Loading…
Cancel
Save