summaryrefslogtreecommitdiff
path: root/src/web/app/desktop/scripts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-02-22 01:25:57 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-02-22 01:25:57 +0900
commit3d4fccef457babe88c0bb4e6b470c30e03ae266e (patch)
tree04ff5c331ce29663e0aee556b7cec13ceb57ebfe /src/web/app/desktop/scripts
parentwip (diff)
downloadsharkey-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.ts11
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
- });
-};