Your IP : 18.189.195.14


Current Path : /var/www/www-root/data/www/monolith-realty.ru/bitrix/js/main/popup/src/compatibility/
Upload File :
Current File : /var/www/www-root/data/www/monolith-realty.ru/bitrix/js/main/popup/src/compatibility/buttonlink.js

import Button from './button';
import { Dom } from 'main.core';

/**
 * @deprecated use BX.UI.Button
 */
export default class ButtonLink extends Button
{
	constructor(params)
	{
		super(params);

		this.buttonNode = Dom.create(
			'span',
			{
				props: {
					className:
						'popup-window-button popup-window-button-link' +
						(this.className.length > 0 ? ' ' + this.className : '')
					,
					id: this.id
				},
				text: this.text,
				events: this.contextEvents
			}
		);
	}
}