| 1 |
/** |
| 2 |
* Init Elements in Elementor Frontend |
| 3 |
* |
| 4 |
*/ |
| 5 |
window.addEventListener("elementor/frontend/init", function() { |
| 6 |
elementorFrontend.hooks.addAction('frontend/element_ready/depicter_slider.default', function ($scope) { |
| 7 |
Depicter.initAll(); |
| 8 |
}); |
| 9 |
|
| 10 |
elementorFrontend.hooks.addAction('frontend/element_ready/shortcode.default', function ($scope) { |
| 11 |
if ($scope.find('.depicter').length) { |
| 12 |
Depicter.initAll(); |
| 13 |
} |
| 14 |
}); |
| 15 |
}); |
| 16 |
|