Your IP : 3.15.0.64


Current Path : /var/www/www-root/data/www/www.monolith-realty.ru/bitrix/js/ui/section/src/
Upload File :
Current File : /var/www/www-root/data/www/www.monolith-realty.ru/bitrix/js/ui/section/src/help-message.js

import {Popup} from "main.popup";

export class HelpMessage
{
	#popup: Popup

	constructor(id: string, node: HTMLElement, message: HTMLElement)
	{
		this.#popup = new Popup(id, node, {
			content: message,
			darkMode: true,
			autoHide: true,
			angle: true,
			offsetLeft: 20,
			bindOptions: {
				position: 'bottom',
			},
			closeByEsc: true,
		});
	}

	getPopup(): Popup
	{
		return this.#popup;
	}

	show(): void
	{
		this.#popup.show();
	}
}