diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-12-02 20:10:53 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-12-02 20:10:53 +0900 |
| commit | 165397739266f154a9b32b4265ef8939c7bdb4aa (patch) | |
| tree | 760b3bbbc693cbd09f7c00d4f68966d02ebe4652 /src/client/app/mobile/script.ts | |
| parent | No MFM parsing when remote note (#3470) (diff) | |
| download | misskey-165397739266f154a9b32b4265ef8939c7bdb4aa.tar.gz misskey-165397739266f154a9b32b4265ef8939c7bdb4aa.tar.bz2 misskey-165397739266f154a9b32b4265ef8939c7bdb4aa.zip | |
Improve input dialog
Diffstat (limited to 'src/client/app/mobile/script.ts')
| -rw-r--r-- | src/client/app/mobile/script.ts | 9 |
1 files changed, 0 insertions, 9 deletions
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<string>((res, rej) => { - const x = window.prompt(opts.title); - if (x) { - res(x); - } - }); - }, - $notify(message) { alert(message); } |