From 1a070515abebce68226839338bce543317056009 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89verton=20R=2E=20Auler?= Date: Wed, 24 Jun 2015 21:35:45 -0300 Subject: [PATCH] Fixing issues #3047, #3250 and #3430 --- src/components/tooltip/tooltip.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/tooltip/tooltip.js b/src/components/tooltip/tooltip.js index 3c62cea0a8b..4b349007a59 100644 --- a/src/components/tooltip/tooltip.js +++ b/src/components/tooltip/tooltip.js @@ -129,7 +129,7 @@ function MdTooltipDirective($timeout, $window, $$rAF, $document, $mdUtil, $mdThe function bindEvents () { var mouseActive = false; var enterHandler = function() { - if (!hasComputedStyleValue('pointer-events','none')) { + if (!hasComputedStyleValue('pointer-events','block')) { setVisible(true); } };