Skip to content

Commit 9728298

Browse files
committed
Scrollable leaderboard and remove non existing function's call
1 parent 3d95f58 commit 9728298

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

blind_coding/db.sqlite3

0 Bytes
Binary file not shown.

blind_coding/static/css/style-1.css

+1
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,7 @@ textarea:focus {
345345
left: 15px;
346346
padding: 20px;
347347
display: none;
348+
overflow-y:scroll;
348349
}
349350

350351
.scoreboard {

blind_coding/static/js/app.js

+3-4
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ const sendRequest = (method,url,data) => {
182182
}
183183
} else {
184184
// Nothing
185-
startClock();
185+
// startClock();
186186
}
187187
}
188188
ourRequest.onerror = function() {
@@ -196,7 +196,7 @@ const sendRequest = (method,url,data) => {
196196

197197
const getQuestion = (queNum) => {
198198
// start = 0;
199-
startClock();
199+
// startClock();
200200
let data = {
201201
queNum : queNum
202202
};
@@ -251,7 +251,7 @@ function login() {
251251
}
252252

253253
window.onload = () => {
254-
startClock();
254+
// startClock();
255255
}
256256

257257
function showAbout() {
@@ -344,7 +344,6 @@ let timerCont = document.getElementById('timer');
344344

345345
let s = 0, m = 0;
346346
function increaseTime() {
347-
348347
setInterval(function() {
349348
if (s > 59){
350349
s -= 60;

0 commit comments

Comments
 (0)