|
1
|
jQuery(window).on('elementor/frontend/init', function() { |
|
2
|
elementorFrontend.hooks.addAction('frontend/element_ready/latepoint_book_form.default', function($scope) { |
|
3
|
if(jQuery('.latepoint-book-form-wrapper').length){ |
|
4
|
jQuery('.latepoint-book-form-wrapper').each(function(){ |
|
5
|
latepoint_init_booking_form_by_trigger(jQuery(this)); |
|
6
|
}); |
|
7
|
} |
|
8
|
}); |
|
9
|
});
|