| 1 |
"use strict"; |
| 2 |
|
| 3 |
(function ($) { |
| 4 |
const initQuickProductGrid = ($scope) => { |
| 5 |
// No JS needed for base grid; reserved for Pro (filters, etc.). |
| 6 |
return; |
| 7 |
}; |
| 8 |
|
| 9 |
$(window).on("elementor/frontend/init", function () { |
| 10 |
elementorFrontend.hooks.addAction( |
| 11 |
"frontend/element_ready/king-addons-quick-product-grid.default", |
| 12 |
function ($scope) { |
| 13 |
initQuickProductGrid($scope); |
| 14 |
} |
| 15 |
); |
| 16 |
}); |
| 17 |
})(jQuery); |
| 18 |
|
| 19 |
|
| 20 |
|
| 21 |
|
| 22 |
|
| 23 |
|
| 24 |
|