Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/sender/install/js/sender/rc_editor/src/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/sender/install/js/sender/rc_editor/src/rc_editor.js

import { Event } from 'main.core';

export class RcEditor
{
	constructor(options = {elementId: string, conditionElementId: string})
	{
		this.element = document.getElementById(options.elementId);
		this.conditionElement = document.getElementById(options.conditionElementId);

		if(!this.element || !this.conditionElement)
		{
			return;
		}
		this.element.disabled = !this.conditionElement.checked;
		this.bindEvents();
	}

	bindEvents()
	{
		Event.bind(this.conditionElement, 'change', (event) => {
			this.element.disabled = !event.target.checked;
		});
	}


}