| 1 |
"use strict"; |
| 2 |
|
| 3 |
(function ($) { |
| 4 |
const initSingleProduct = ($scope) => { |
| 5 |
// Placeholder for future interactions (e.g., gallery, sticky CTA). |
| 6 |
// Currently no JS required for free version. |
| 7 |
}; |
| 8 |
|
| 9 |
$(window).on("elementor/frontend/init", () => { |
| 10 |
elementorFrontend.hooks.addAction( |
| 11 |
"frontend/element_ready/king-addons-single-product.default", |
| 12 |
($scope) => { |
| 13 |
initSingleProduct($scope); |
| 14 |
} |
| 15 |
); |
| 16 |
}); |
| 17 |
})(jQuery); |
| 18 |
|
| 19 |
|
| 20 |
|
| 21 |
|
| 22 |
|
| 23 |
|
| 24 |
|
| 25 |
|