Commit 09671949 authored by Julia Radzhabova's avatar Julia Radzhabova

Bug 20101. Bug with hiding tooltips for disabled split buttons (after timout only).

parent cb05587b
......@@ -430,10 +430,11 @@ define([
isGroup && decorateBtn(el.children('button'));
}
if (disabled) {
if (disabled || !Common.Utils.isGecko) {
var tip = this.cmpEl.data('bs.tooltip');
if (tip) {
tip.hide();
disabled && tip.hide();
!Common.Utils.isGecko && (tip.enabled = !disabled);
}
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment