diff --git a/pos/static/js/catalog.js b/pos/static/js/catalog.js index 1a6c02b..dd4538c 100644 --- a/pos/static/js/catalog.js +++ b/pos/static/js/catalog.js @@ -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() {