Your IP : 3.143.7.112


Current Path : /var/www/www-root/data/www/info.monolith-realty.ru/bitrix/js/main/core/src/internal/
Upload File :
Current File : /var/www/www-root/data/www/info.monolith-realty.ru/bitrix/js/main/core/src/internal/get-relative.js

import Type from '../lib/type';
import Dom from '../lib/dom';

export default function getRelative(node)
{
	if (Type.isDomNode(node))
	{
		if (
			Dom.style(node, 'position') === 'relative'
			|| Dom.style(node, 'position') === 'absolute'
		)
		{
			return node;
		}

		return getRelative(node.parentElement);
	}

	return null;
}