UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

28 lines (26 loc) 769 B
/** * DevExtreme (renovation/utils/get_element_offset.js) * Version: 23.2.6 * Build date: Wed May 01 2024 * * Copyright (c) 2012 - 2024 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ "use strict"; exports.getElementOffset = getElementOffset; var _window = require("../../core/utils/window"); const window = (0, _window.getWindow)(); const DEFAULT_OFFSET = { top: 0, left: 0 }; function getElementOffset(el) { if (el && (0, _window.hasWindow)()) { const rect = el.getBoundingClientRect(); return { top: rect.top + window.scrollY, left: rect.left + window.scrollX } } return DEFAULT_OFFSET }