Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/ilovecveti.ru/bitrix/js/bizproc/debugger/src/tourguide/ |
Upload File : |
import {Loc} from 'main.core'; import {Guide} from 'ui.tour'; export class StageGuide { constructor(options) { this.guide = new Guide({ steps: [ { target: options.target, title: Loc.getMessage('BIZPROC_JS_DEBUGGER_STAGE_TOUR_TITLE'), text: StageGuide.#getText(), article: '16483018', events: options.events ?? {}, condition: { top: true, bottom: false, color: 'primary', }, } ], onEvents: true }); } start() { this.guide.getPopup().setWidth(330); this.guide.showNextStep(); } static #getText(): Element { return ` <ul class="bizproc-debugger-filter-guide-list"> <li class="bizproc-debugger-filter-guide-list-item"> ${Loc.getMessage('BIZPROC_JS_DEBUGGER_STAGE_TOUR_TEXT_LINE_1')} </li> <li class="bizproc-debugger-filter-guide-list-item"> ${Loc.getMessage('BIZPROC_JS_DEBUGGER_STAGE_TOUR_TEXT_LINE_2')} </li> </ul> `; } }