Commit 226c5ed2 authored by Julia Radzhabova's avatar Julia Radzhabova

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

parent 523bb4e8
......@@ -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));
......
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