note banner: tooltip style (Gaussian bg, border, blur); fix Recognition→Note in sky.html & _applet-my-sky.html

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Disco DeDisco
2026-04-22 22:41:40 -04:00
parent 473e6bc45a
commit 48aad6ce35
4 changed files with 8 additions and 8 deletions

View File

@@ -332,7 +332,7 @@
formWrap.style.display = 'none';
svgEl.style.display = '';
NatusWheel.preload().then(() => NatusWheel.draw(svgEl, _lastChartData));
Recognition.handleSaveResponse(data);
Note.handleSaveResponse(data);
})
.catch(err => {
setStatus(`Save failed: ${err.message}`, 'error');

View File

@@ -300,7 +300,7 @@
if (!r.ok) throw new Error(`HTTP ${r.status}`);
return r.json();
})
.then(data => { setStatus('Sky saved!'); Recognition.handleSaveResponse(data); })
.then(data => { setStatus('Sky saved!'); Note.handleSaveResponse(data); })
.catch(err => {
setStatus(`Save failed: ${err.message}`, 'error');
confirmBtn.disabled = false;