13 lines
377 B
JavaScript
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();
|
|
});
|
|
}
|
|
});
|