Browse Source

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

git-svn-id: http://svn.code.sf.net/p/itop/code/trunk@4072 a333f486-631f-4898-b8df-5754b55c2be0
glajarige 9 years ago
parent
commit
ec88887c33
1 changed files with 3 additions and 2 deletions
  1. 3 2
      datamodels/2.x/itop-portal-base/portal/src/views/layout.html.twig

+ 3 - 2
datamodels/2.x/itop-portal-base/portal/src/views/layout.html.twig

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