summaryrefslogtreecommitdiff
path: root/src/web/app/mobile/api
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2018-03-07 19:00:15 +0900
committerGitHub <noreply@github.com>2018-03-07 19:00:15 +0900
commita227ef30e8bc8282605361b013d323bb3bbc4e7d (patch)
tree8bd28f1d27a77e061e7b7f56f8794e483fe82f8f /src/web/app/mobile/api
parentv3999 (diff)
parentoops (diff)
downloadsharkey-a227ef30e8bc8282605361b013d323bb3bbc4e7d.tar.gz
sharkey-a227ef30e8bc8282605361b013d323bb3bbc4e7d.tar.bz2
sharkey-a227ef30e8bc8282605361b013d323bb3bbc4e7d.zip
Merge pull request #1197 from syuilo/othello
Othello
Diffstat (limited to 'src/web/app/mobile/api')
-rw-r--r--src/web/app/mobile/api/input.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/web/app/mobile/api/input.ts b/src/web/app/mobile/api/input.ts
index fcff68cfb6..38d0fb61eb 100644
--- a/src/web/app/mobile/api/input.ts
+++ b/src/web/app/mobile/api/input.ts
@@ -1,5 +1,8 @@
export default function(opts) {
return new Promise<string>((res, rej) => {
- alert('input not implemented yet');
+ const x = window.prompt(opts.title);
+ if (x) {
+ res(x);
+ }
});
}