mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-19 08:38:45 +02:00
Customer portal : Tooltip not closing when opening a modal on mobile devices
SVN:trunk[4072]
This commit is contained in:
@@ -308,8 +308,9 @@
|
||||
}
|
||||
});
|
||||
// Hide tooltips when a modal is opening, otherwise it might be overlapping it
|
||||
$('body').on('show.bs.modal', function (event) {
|
||||
$(this).find('[data-toggle*="tooltip"]').tooltip('hide');
|
||||
$('body').on('show.bs.modal', function () {
|
||||
console.log('event captured');
|
||||
$(this).find('.tooltip.in').tooltip('hide');
|
||||
});
|
||||
{% endblock %}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user