1
0
Fork 0

removing unused functions

main
Kim Huebel 4 years ago
parent c9e5ae53db
commit 47f3448409

@ -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')

Loading…
Cancel
Save