Customer portal : Tooltip not closing when opening a modal on mobile devices

SVN:trunk[4072]
This commit is contained in:
Guillaume Lajarige
2016-05-12 12:01:52 +00:00
parent 1693f73742
commit 793d4f814d

View File

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