37648-vm/assets/js/main.js
Flatlogic Bot 101c936be1 v1
2026-01-21 06:06:00 +00:00

13 lines
377 B
JavaScript

// Main JS
document.addEventListener('DOMContentLoaded', () => {
// Focus SKU field when modal opens
const myModal = document.getElementById('addProductModal');
const myInput = document.querySelector('input[name="sku"]');
if (myModal) {
myModal.addEventListener('shown.bs.modal', () => {
if (myInput) myInput.focus();
});
}
});