Skip to content

Commit 3912e34

Browse files
committed
removed debug
1 parent 9c63b81 commit 3912e34

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

html/static/index/js/app.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,7 @@ var main = function() {
9393
// Get within current limits
9494
seconds = Math.floor(seconds % 60);
9595
minutes = Math.floor(minutes % 60);
96-
console.log(Math.floor(hours), " --", Math.floor(hours % 24));
97-
if (hours - 24 >= 0)
98-
hours = Math.floor(hours);
99-
else
100-
hours = Math.floor(hours % 24);
96+
hours = Math.floor(hours);
10197

10298
// Negative time protection
10399
if (hours < 0 || minutes < 0 || seconds < 0) {

0 commit comments

Comments
 (0)