updated list of "facing east" markers by @luarvique

This commit is contained in:
Jakob Ketterl 2023-09-16 02:41:28 +02:00
parent 1f3c011057
commit 6df80829d0
1 changed files with 2 additions and 2 deletions

View File

@ -6,10 +6,10 @@ AprsMarker.prototype.isFacingEast = function(symbol) {
var candidates = '' var candidates = ''
if (symbol.table === '/') { if (symbol.table === '/') {
// primary table // primary table
candidates = '(*<=>CFPUXYabefghjkpsuv['; candidates = '(*<=>CFPUXYZabefgjkpsuv[';
} else { } else {
// alternate table // alternate table
candidates = 'hkluv'; candidates = '(T`efhjktuvw';
} }
return candidates.includes(symbol.symbol); return candidates.includes(symbol.symbol);
}; };