Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/landing/install/js/landing/ui/button/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/landing/install/js/landing/ui/button/text_background_color.js

;(function() {
	"use strict";

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


	/**
	 * Implements interface for works with color picker button
	 *
	 * @extends {BX.Landing.UI.Button.ColorAction}
	 *
	 * @param {string} id - Action id
	 * @param {?object} [options]
	 *
	 * @constructor
	 */
	BX.Landing.UI.Button.TextBackgroundAction = function(id, options)
	{
		BX.Landing.UI.Button.ColorAction.apply(this, arguments);
		this.layout.classList.remove("landing-ui-button-editor-action-color");
		this.layout.classList.add("landing-ui-button-editor-action-background");
	};

	BX.Landing.UI.Button.TextBackgroundAction.prototype = {
		constructor: BX.Landing.UI.Button.TextBackgroundAction,
		__proto__: BX.Landing.UI.Button.ColorAction.prototype,
	};
})();