summaryrefslogtreecommitdiff
path: root/src/web/app/mobile/api/input.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/app/mobile/api/input.ts')
-rw-r--r--src/web/app/mobile/api/input.ts8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/web/app/mobile/api/input.ts b/src/web/app/mobile/api/input.ts
deleted file mode 100644
index 38d0fb61eb..0000000000
--- a/src/web/app/mobile/api/input.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-export default function(opts) {
- return new Promise<string>((res, rej) => {
- const x = window.prompt(opts.title);
- if (x) {
- res(x);
- }
- });
-}