Show tooltip on combobox in the modal windows (DropCapSettings).
This commit is contained in:
parent
8301073f26
commit
e93d1d537e
|
@ -188,6 +188,11 @@ define([
|
|||
title : me.options.hint,
|
||||
placement : me.options.hintAnchor||'cursor'
|
||||
});
|
||||
|
||||
var modalParents = el.closest('.asc-window');
|
||||
if (modalParents.length > 0) {
|
||||
el.data('bs.tooltip').tip().css('z-index', parseInt(modalParents.css('z-index')) + 10);
|
||||
}
|
||||
}
|
||||
|
||||
el.on('show.bs.dropdown', _.bind(me.onBeforeShowMenu, me));
|
||||
|
|
Loading…
Reference in a new issue