summaryrefslogtreecommitdiff
path: root/src/web/app/desktop/scripts/dialog.ls
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-02-18 17:42:17 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-02-18 17:42:17 +0900
commita62fe67e25b012389afb6bd859f1808f7ef7db6f (patch)
tree5d90465bc01786c03f408d863a9b3698554c5cc0 /src/web/app/desktop/scripts/dialog.ls
parent:v: (diff)
downloadmisskey-a62fe67e25b012389afb6bd859f1808f7ef7db6f.tar.gz
misskey-a62fe67e25b012389afb6bd859f1808f7ef7db6f.tar.bz2
misskey-a62fe67e25b012389afb6bd859f1808f7ef7db6f.zip
:v:
Diffstat (limited to 'src/web/app/desktop/scripts/dialog.ls')
-rw-r--r--src/web/app/desktop/scripts/dialog.ls17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/web/app/desktop/scripts/dialog.ls b/src/web/app/desktop/scripts/dialog.ls
deleted file mode 100644
index f3dd6cea1b..0000000000
--- a/src/web/app/desktop/scripts/dialog.ls
+++ /dev/null
@@ -1,17 +0,0 @@
-# Dialog
-#================================
-
-riot = require 'riot'
-
-module.exports = (title, text, buttons, can-through, on-through) ~>
- dialog = document.body.append-child document.create-element \mk-dialog
- controller = riot.observable!
- riot.mount dialog, do
- controller: controller
- title: title
- text: text
- buttons: buttons
- can-through: can-through
- on-through: on-through
- controller.trigger \open
- return controller