feat(pos): scroll automatico al catalogo al seleccionar motor

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-02 08:15:35 +00:00
parent 97704fd804
commit 1547b35b14

View File

@@ -934,6 +934,12 @@
state.level = 'categories';
loadCategories();
// Scroll to catalog content
setTimeout(function () {
var body = document.getElementById('pageBody');
if (body) body.scrollIntoView({ behavior: 'smooth', block: 'start' });
}, 300);
}
function vsClearAll() {