From 165397739266f154a9b32b4265ef8939c7bdb4aa Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 2 Dec 2018 20:10:53 +0900 Subject: Improve input dialog --- src/client/app/mobile/script.ts | 9 --------- 1 file changed, 9 deletions(-) (limited to 'src/client/app/mobile/script.ts') diff --git a/src/client/app/mobile/script.ts b/src/client/app/mobile/script.ts index a51e87c6aa..7fe3ab05d9 100644 --- a/src/client/app/mobile/script.ts +++ b/src/client/app/mobile/script.ts @@ -95,15 +95,6 @@ init((launch) => { }); }, - $input(opts) { - return new Promise((res, rej) => { - const x = window.prompt(opts.title); - if (x) { - res(x); - } - }); - }, - $notify(message) { alert(message); } -- cgit v1.2.3-freya