removing unused functions
This commit is contained in:
parent
c9e5ae53db
commit
47f3448409
1 changed files with 0 additions and 15 deletions
|
@ -211,21 +211,6 @@ function decodeSkyperRubric(rubric) {
|
||||||
return "Skyper-Rubric Announcement: No.: " + ric + ": " + name;
|
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) {
|
function copyToQSO(callsign) {
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
var date = new Date().toISOString().split('T')
|
var date = new Date().toISOString().split('T')
|
||||||
|
|
Loading…
Reference in a new issue