fix(wifi): radar bssidToAngle divisor, Firefox SVG transform-origin, zone label clarity

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
James Smith
2026-03-26 22:31:21 +00:00
parent 4c37d39e07
commit 56ebdd7670
3 changed files with 3 additions and 2 deletions

View File

@@ -1497,7 +1497,7 @@ const WiFiMode = (function() {
for (let i = 0; i < bssid.length; i++) {
hash = (hash * 31 + bssid.charCodeAt(i)) & 0xffffffff;
}
return (hash >>> 0) / 0xffffffff * 2 * Math.PI;
return (hash >>> 0) / 0x100000000 * 2 * Math.PI;
}
function renderRadar(networksList) {