summaryrefslogtreecommitdiff
path: root/src/client/app/desktop/api/input.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/app/desktop/api/input.ts')
-rw-r--r--src/client/app/desktop/api/input.ts19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/client/app/desktop/api/input.ts b/src/client/app/desktop/api/input.ts
deleted file mode 100644
index bd7bfa0129..0000000000
--- a/src/client/app/desktop/api/input.ts
+++ /dev/null
@@ -1,19 +0,0 @@
-import OS from '../../mios';
-import InputDialog from '../views/components/input-dialog.vue';
-
-export default (os: OS) => opts => {
- return new Promise<string>((res, rej) => {
- const o = opts || {};
- const d = os.new(InputDialog, {
- title: o.title,
- placeholder: o.placeholder,
- default: o.default,
- type: o.type || 'text',
- allowEmpty: o.allowEmpty
- });
- d.$once('done', text => {
- res(text);
- });
- document.body.appendChild(d.$el);
- });
-};