• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/slider/tasksslider.php
  • Класс: BitrixTasksSliderTasksSlider
  • Вызов: TasksSlider::setJs
private function setJs(): void
{
	if ($this->skipEvents)
	{
		$this->js = "
			BX.ready(function() {
				BX.SidePanel.Instance.open(
					'{$this->openUrl}',
					{
						{$this->getWidth()}
					},
				);
			});
	";
	}
	else
	{
		$this->js = "
			BX.ready(function() {
				BX.SidePanel.Instance.open(
					'{$this->openUrl}',
					{
						{$this->getWidth()}
						events: {
							onClose: function() {
								location.href = '{$this->closeUrl}';
							},
						},
					},
				);
			});
	";
	}


}