UNPKG

@sberdevices/plasma-temple

Version:

SberDevices CanvasApp Templates.

14 lines (11 loc) 449 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isElementOutViewport = void 0; var isElementOutViewport = function isElementOutViewport(element) { var rect = element.getBoundingClientRect(); return rect.bottom < 0 || rect.right < 0 || rect.left > window.innerWidth || rect.top > window.innerHeight; }; exports.isElementOutViewport = isElementOutViewport; //# sourceMappingURL=isElementOutViewport.js.map