summaryrefslogtreecommitdiff
path: root/runtime/js/99_main.js
diff options
context:
space:
mode:
authorZander Hill <zander@xargs.io>2024-07-04 15:12:14 -0700
committerGitHub <noreply@github.com>2024-07-04 22:12:14 +0000
commitf00f0f92983d6966a5b97e539ec3f3407c3d851f (patch)
tree73966bbfbd836dd3dd36ff22647c97d0f839baed /runtime/js/99_main.js
parent96b527b8df3c9e7e29c98a6a0d6876089b88bc09 (diff)
feat(jupyter): support `confirm` and `prompt` in notebooks (#23592)
Closes: https://github.com/denoland/deno/issues/22633 This commit adds support for `confirm` and `prompt` APIs, that instead of reading from stdin are using notebook frontend to show modal boxes and wait for answers. --------- Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com>
Diffstat (limited to 'runtime/js/99_main.js')
-rw-r--r--runtime/js/99_main.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/js/99_main.js b/runtime/js/99_main.js
index 0a750f891..44dc3c54d 100644
--- a/runtime/js/99_main.js
+++ b/runtime/js/99_main.js
@@ -579,6 +579,7 @@ const NOT_IMPORTED_OPS = [
// Related to `Deno.jupyter` API
"op_jupyter_broadcast",
+ "op_jupyter_input",
// Related to `Deno.test()` API
"op_test_event_step_result_failed",