Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Fixing md-tooltip on Firefox issues #3047, #3250 and #3430 #3447

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/tooltip/tooltip.js
Original file line number Diff line number Diff line change
Expand Up @@ -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')) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change does not make sense. The three valid pointer-events style values for any HTML element are:

  • auto
  • inherit
  • none

setVisible(true);
}
};
Expand Down