From 47f3448409816d4a960ce73cbf342978a14bd320 Mon Sep 17 00:00:00 2001 From: Kim Huebel Date: Sat, 30 Jan 2021 20:41:00 +0000 Subject: [PATCH] removing unused functions --- html/js/functions.js | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/html/js/functions.js b/html/js/functions.js index d7210f2..0b407d1 100644 --- a/html/js/functions.js +++ b/html/js/functions.js @@ -211,21 +211,6 @@ function decodeSkyperRubric(rubric) { return "Skyper-Rubric Announcement: No.: " + ric + ": " + name; } -function clocktime() { - var now = new Date(), - h = now.getHours(), - m = now.getMinutes(), - s = now.getSeconds(); - m = leadingZero(m); - s = leadingZero(s); - return h + ':' + m + ':' + s; -} - -function leadingZero(zahl) { - zahl = (zahl < 10 ? '0' : '' )+ zahl; - return zahl; -} - function copyToQSO(callsign) { $(document).ready(function() { var date = new Date().toISOString().split('T')