summaryrefslogtreecommitdiff
path: root/src/web/app/desktop/scripts/notify.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-02-21 02:53:34 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-02-21 02:53:34 +0900
commita1e57841e71e442b1bf52e445e6c541f16ec066d (patch)
tree2b6862b8b47a68a98d0c1534d5dbe1ca356bea2d /src/web/app/desktop/scripts/notify.ts
parentwip (diff)
downloadmisskey-a1e57841e71e442b1bf52e445e6c541f16ec066d.tar.gz
misskey-a1e57841e71e442b1bf52e445e6c541f16ec066d.tar.bz2
misskey-a1e57841e71e442b1bf52e445e6c541f16ec066d.zip
wip
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
- });
-};