Show tooltip on combobox in the modal windows (DropCapSettings).

This commit is contained in:
Julia Radzhabova 2017-05-23 15:05:15 +03:00
parent 8301073f26
commit e93d1d537e

View file

@ -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));