Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for type (0.19 sec)

  1. docs/en/docs/js/termynal.js

                const type = line.getAttribute(this.pfx);
                const delay = line.getAttribute(`${this.pfx}-delay`) || this.lineDelay;
    
                if (type == 'input') {
                    line.setAttribute(`${this.pfx}-cursor`, this.cursor);
                    await this.type(line);
                    await this._wait(delay);
                }
    
                else if (type == 'progress') {
    JavaScript
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 12 00:06:16 GMT 2022
    - 9.3K bytes
    - Viewed (0)
  2. docs/en/docs/js/custom.js

                            useLines.push({
                                type: "progress"
                            });
                        } else if (line.startsWith(promptLiteralStart)) {
                            saveBuffer();
                            const value = line.replace(promptLiteralStart, "").trimEnd();
                            useLines.push({
                                type: "input",
                                value: value
    JavaScript
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat May 08 17:50:56 GMT 2021
    - 6.6K bytes
    - Viewed (0)
Back to top