Skip to main content

Function: prompt()

function prompt(
message,
defaultValue,
callback
): void;

Defined in: packages/blockly/core/dialog.ts:117

Wrapper to window.prompt() that app developers may override via setPrompt to provide alternatives to the modal browser window. Built-in browser prompts are often used for better text input experience on mobile device. We strongly recommend testing mobile when overriding this.

Parameters

ParameterTypeDescription
messagestringThe message to display to the user.
defaultValuestringThe value to initialize the prompt with.
callback(result) => voidThe callback for handling user response.

Returns

void