summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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