summaryrefslogtreecommitdiff
path: root/src/web
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-02-18 09:17:10 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-02-18 09:17:10 +0900
commit43f9fcb31bf930f7205bd713fe0bfc066832e934 (patch)
tree3eab50117845f376a117ce67e9bc5a4dd96f8611 /src/web
parent:v: (diff)
downloadsharkey-43f9fcb31bf930f7205bd713fe0bfc066832e934.tar.gz
sharkey-43f9fcb31bf930f7205bd713fe0bfc066832e934.tar.bz2
sharkey-43f9fcb31bf930f7205bd713fe0bfc066832e934.zip
Remove unused file
Diffstat (limited to 'src/web')
-rw-r--r--src/web/app/common/scripts/log.ls18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/web/app/common/scripts/log.ls b/src/web/app/common/scripts/log.ls
deleted file mode 100644
index 6e1e3735d8..0000000000
--- a/src/web/app/common/scripts/log.ls
+++ /dev/null
@@ -1,18 +0,0 @@
-riot = require \riot
-
-logs = []
-
-ev = riot.observable!
-
-function log(msg)
- logs.push do
- date: new Date!
- message: msg
- ev.trigger \log
-
-riot.mixin \log do
- logs: logs
- log: log
- log-event: ev
-
-module.exports = log