From 504b451a1fa9a9fa988e1d8cfa75086702c8e6a5 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 1 Jan 2017 11:18:33 +0900 Subject: [PATCH] Clean up --- src/web/app/boot.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/web/app/boot.js b/src/web/app/boot.js index b224491c1..9d6687f9e 100644 --- a/src/web/app/boot.js +++ b/src/web/app/boot.js @@ -11,7 +11,6 @@ Misskeyを起動します。 const riot = require('riot'); require('velocity'); -const log = require('./common/scripts/log.ls'); const api = require('./common/scripts/api.ls'); const signout = require('./common/scripts/signout.ls'); const generateDefaultUserdata = require('./common/scripts/generate-default-userdata.ls'); @@ -41,20 +40,12 @@ try { Storage.prototype.setItem = () => { }; // noop } -// MAIN PROCESS - -log("Misskey (aoi) v:" + VERSION); - // Check for Update checkForUpdate(); // Get token from cookie const i = (document.cookie.match(/i=(\w+)/) || [null, null])[1]; -if (i != null) { - log("ME: " + i); -} - // ユーザーをフェッチしてコールバックする module.exports = callback => { // Get cached account data @@ -86,7 +77,6 @@ module.exports = callback => { localStorage.setItem('me', JSON.stringify(me)); }); } - log("Fetched! Hello " + me.username + "."); } mixins(me); const init = document.getElementById('init');