UNPKG

terra-overlay

Version:

The Overlay component is a component that creates an semi-transparent overlay screen that blocks interactions with the elements underneath the display. There are two types of overlays: fullscreen and relative to its container.

7 lines (6 loc) 264 B
"use strict"; // Source: https://developer.mozilla.org/en-US/docs/Web/API/Element/matches // Needed for IE11 and IE10 if (!Element.prototype.matches) { Element.prototype.matches = Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector; }