Merge branch 'snr_in_spot' into 'master'

roster: promote SNR from tooltip to in-spot

See merge request gridtracker.org/gridtracker!8
merge-requests/31/head
Paul Traina 2020-10-31 23:19:40 +00:00
commit 53e2332790
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -1521,7 +1521,7 @@ function viewRoster()
worker += "<td style='color:#0F0;' align='center'>"+ (thisCall in window.opener.g_oqrsCallsigns ? "&#10004;" : "")+"</td>";
if ( g_rosterSettings.columns.Spot )
worker += "<td style='color:#EEE;' class='spotCol' id='sp"+thisCall+newCallList[x].band+newCallList[x].mode+"' "+ (spotSnr?"title='"+spotSnr+"'" :"")+">"+ spotString +"</td>";
worker += "<td style='color:#EEE;' class='spotCol' id='sp"+thisCall+newCallList[x].band+newCallList[x].mode+"' "+ (spotSnr?"title='"+spotSnr+"'" :"")+">"+ spotString + (spotSnr?" / " + spotSnr:"") +"</td>";
if ( g_rosterSettings.columns.Life )
worker += "<td style='color:#EEE;' class='lifeCol' id='lm"+thisCall+newCallList[x].band+newCallList[x].mode+"'>"+ (timeNowSec() - newCallList[x].life).toDHMS() +"</td>";