Browse Source

enhance console log

schtonn 2 years ago
parent
commit
e5f2ef13cb
3 changed files with 1 additions and 26 deletions
  1. 0 1
      gravity/index.html
  2. 1 5
      js/chess.js
  3. 0 20
      poets/index.html

+ 0 - 1
gravity/index.html

@@ -134,7 +134,6 @@
                         vy: FRAGMENT_SPEED * (Math.random() * 2 - 1),
                         lock: LOCK_TIME * (Math.random() + 1)
                     });
-                    console.log(planets[planets.length - 1].lock)
                 }
                 var frequency = arrFrequency[Math.floor(Math.random() * 10)];
                 var oscillator = audioCtx.createOscillator();

+ 1 - 5
js/chess.js

@@ -45,7 +45,6 @@ function getCookie(cname) {
 function checkCookie() {
     myCol = parseInt(getCookie('color'))
     if (myCol != 0 && myCol != 1) myCol = 2;
-    console.log('mycolor: ' + myCol)
 }
 
 function updateCurLight() {
@@ -304,7 +303,6 @@ class Chess {
     check() {
         $(this.span).each((index, item) => {
             if (index == this.arr[this.arr.length - 1]) {
-                console.log(item)
                 $(item).addClass("highlight");
                 return;
             }
@@ -329,8 +327,6 @@ query.find().then((result) => {
         var map = result[0].get('data')
         messages = result[0].get('messages')
         updateMessages();
-        console.log(map)
-        console.log(messages)
         if (map.length) {
             game = new Chess($("#game"));
             game.arr = map;
@@ -350,7 +346,7 @@ setTimeout(function () {
             var map = result.get('data')
             messages = result.get('messages')
             updateMessages();
-            console.log(map);
+            console.log('Updated')
             game.reset();
             game.arr = map;
             game.upd();

+ 0 - 20
poets/index.html

@@ -1,20 +0,0 @@
-<head>
-    <title>智慧诗集</title>
-</head>
-<body>
-    <script src="../js/springyEmojiCursor.js"></script>
-    <script type="text/javascript">
-        new springyEmojiCursor({emoji:"🤐"});
-    </script>
-    <h3>间或</h3>
-    <p>你站在桥上刻舟,刻舟人在楼上挑灯。</p>
-    <p>佩环装饰了你的小潭,你装饰了太宗的梦。</p>
-    <h3>六一居士</h3>
-    <p>阅读没有满分,没有随意这个选项,</p>
-    <p>也没有反正。</p>
-    <p>作文没有付费,没有八分这个选项,</p>
-    <p>也没有六分。</p>
-    <p style="font-size: 5px;">注:本诗一切解释权归六一居士所有</p>
-    <h3>跑调者联盟</h3>
-    <audio src="/audio/avengers.mp3" controls></audio>
-</body>