From 3f79c9ae4927d4186c708e130ecbb1ea4f72d9fa Mon Sep 17 00:00:00 2001 From: syuilo Date: Fri, 9 Nov 2018 16:00:29 +0900 Subject: Refactor client (#3178) * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip --- src/client/app/mobile/api/input.ts | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 src/client/app/mobile/api/input.ts (limited to 'src/client/app/mobile/api/input.ts') diff --git a/src/client/app/mobile/api/input.ts b/src/client/app/mobile/api/input.ts deleted file mode 100644 index 38d0fb61eb..0000000000 --- a/src/client/app/mobile/api/input.ts +++ /dev/null @@ -1,8 +0,0 @@ -export default function(opts) { - return new Promise((res, rej) => { - const x = window.prompt(opts.title); - if (x) { - res(x); - } - }); -} -- cgit v1.2.3-freya