diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-02-18 09:17:10 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-02-18 09:17:10 +0900 |
| commit | 43f9fcb31bf930f7205bd713fe0bfc066832e934 (patch) | |
| tree | 3eab50117845f376a117ce67e9bc5a4dd96f8611 /src/web/app/common/scripts | |
| parent | :v: (diff) | |
| download | sharkey-43f9fcb31bf930f7205bd713fe0bfc066832e934.tar.gz sharkey-43f9fcb31bf930f7205bd713fe0bfc066832e934.tar.bz2 sharkey-43f9fcb31bf930f7205bd713fe0bfc066832e934.zip | |
Remove unused file
Diffstat (limited to 'src/web/app/common/scripts')
| -rw-r--r-- | src/web/app/common/scripts/log.ls | 18 |
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 |