Skip to content
Snippets Groups Projects
Commit a8c554df authored by deuce's avatar deuce
Browse files

Reverse the US callsign name order from:

"Swindell, Robert R" to "Robert R Swindell"
parent 224c9432
No related branches found
No related tags found
No related merge requests found
......@@ -79,8 +79,12 @@ var CallSign={
}
if(ret.class==undefined)
ret.qualifications=ret.type;
else
else {
ret.qualifications=ret.class;
m=ret.name.match(/^(.*), (.*)$/);
if(m)
ret.name=m[2]+' '+m[1];
}
return ret;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment