Your IP : 3.133.108.47


Current Path : /var/www/www-root/data/www/info.monolith-realty.ru/bitrix/js/ui/bbcode/model/src/nodes/
Upload File :
Current File : /var/www/www-root/data/www/info.monolith-realty.ru/bitrix/js/ui/bbcode/model/src/nodes/tab-node.js

import { nameSymbol } from './node';
import { BBCodeTextNode, contentSymbol, type BBCodeTextNodeContent, type BBCodeTextNodeOptions } from './text-node';

export class BBCodeTabNode extends BBCodeTextNode
{
	[nameSymbol]: string = '#tab';
	[contentSymbol]: string = '\t';

	constructor(options: BBCodeTextNodeOptions = {})
	{
		super(options);
	}

	setContent(options: BBCodeTextNodeContent)
	{}

	clone(options): BBCodeTabNode
	{
		return this.getScheme().createTab();
	}
}