From adf24dfc4623f6020b7b27d0e2f32f8f7e109866 Mon Sep 17 00:00:00 2001 From: abap34 Date: Wed, 17 Jul 2024 00:57:04 +0900 Subject: [PATCH] =?UTF-8?q?LastSubmit=20=E5=88=97=E3=82=92=E6=9C=80?= =?UTF-8?q?=E7=B5=82=E7=B5=90=E6=9E=9C=E3=81=8B=E3=82=89=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- supplement/competetion-result.html | 1 - supplement/leaderboard.js | 5 ----- 2 files changed, 6 deletions(-) diff --git a/supplement/competetion-result.html b/supplement/competetion-result.html index 2557075..1241433 100644 --- a/supplement/competetion-result.html +++ b/supplement/competetion-result.html @@ -84,7 +84,6 @@ Score Submit Count - Last Submit Shake diff --git a/supplement/leaderboard.js b/supplement/leaderboard.js index a4b7cb2..bf6c3f5 100644 --- a/supplement/leaderboard.js +++ b/supplement/leaderboard.js @@ -54,11 +54,6 @@ const createRowElement = (item) => { submitCountCell.style.color = '#e06c75'; row.appendChild(submitCountCell); - const lastSubmitCell = document.createElement('td'); - lastSubmitCell.textContent = item.lastsubmit; - lastSubmitCell.style.color = '#d19a66'; - row.appendChild(lastSubmitCell); - const shakeCell = document.createElement('td'); shakeCell.textContent = item.shake; shakeCell.style.color = item.shake.includes('↑') ? 'green' : item.shake.includes('↓') ? 'red' : '#abb2bf';