diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-02-22 01:25:57 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-02-22 01:25:57 +0900 |
| commit | 3d4fccef457babe88c0bb4e6b470c30e03ae266e (patch) | |
| tree | 04ff5c331ce29663e0aee556b7cec13ceb57ebfe /src/web/app/desktop/scripts | |
| parent | wip (diff) | |
| download | sharkey-3d4fccef457babe88c0bb4e6b470c30e03ae266e.tar.gz sharkey-3d4fccef457babe88c0bb4e6b470c30e03ae266e.tar.bz2 sharkey-3d4fccef457babe88c0bb4e6b470c30e03ae266e.zip | |
wip
Diffstat (limited to 'src/web/app/desktop/scripts')
| -rw-r--r-- | src/web/app/desktop/scripts/password-dialog.ts | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/web/app/desktop/scripts/password-dialog.ts b/src/web/app/desktop/scripts/password-dialog.ts deleted file mode 100644 index 39d7f3db7a..0000000000 --- a/src/web/app/desktop/scripts/password-dialog.ts +++ /dev/null @@ -1,11 +0,0 @@ -import * as riot from 'riot'; - -export default (title, onOk, onCancel) => { - const dialog = document.body.appendChild(document.createElement('mk-input-dialog')); - return (riot as any).mount(dialog, { - title: title, - type: 'password', - onOk: onOk, - onCancel: onCancel - }); -}; |