summaryrefslogtreecommitdiff
path: root/src/web/app/desktop/scripts/notify.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/app/desktop/scripts/notify.ts')
-rw-r--r--src/web/app/desktop/scripts/notify.ts8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/web/app/desktop/scripts/notify.ts b/src/web/app/desktop/scripts/notify.ts
deleted file mode 100644
index 2e6cbdeed8..0000000000
--- a/src/web/app/desktop/scripts/notify.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import * as riot from 'riot';
-
-export default message => {
- const notification = document.body.appendChild(document.createElement('mk-ui-notification'));
- (riot as any).mount(notification, {
- message: message
- });
-};