Your IP : 3.129.217.196


Current Path : /var/www/www-root/data/www/www.monolith-realty.ru/bitrix/js/landing/ui/adapter/
Upload File :
Current File : /var/www/www-root/data/www/www.monolith-realty.ru/bitrix/js/landing/ui/adapter/css-property.js

;(function() {
	"use strict";

	BX.namespace("BX.Landing.UI.Adapter");

	BX.Landing.UI.Adapter.CSSProperty = function() {};

	function useFallback()
	{
		return BX.browser.IsFirefox();
	}

	/**
	 * Gets property
	 * @param {string} property - CSS property
	 * @return {string}
	 */
	BX.Landing.UI.Adapter.CSSProperty.get = function(property)
	{
		if (useFallback() && property in BX.Landing.UI.Adapter.CSSProperty.map)
		{
			property = BX.Landing.UI.Adapter.CSSProperty.map[property];
		}

		return property;
	};

	BX.Landing.UI.Adapter.CSSProperty.map = {
		"border-color": useFallback() ? "border-bottom-color" : "border-color"
	};
})();