| 1 |
jQuery( window ).on( 'elementor/frontend/init', function() |
| 2 |
{ |
| 3 |
elementorFrontend.hooks.addAction( 'frontend/element_ready/property-images.default', function($scope, jQuery) |
| 4 |
{ |
| 5 |
ph_init_slideshow(); |
| 6 |
}); |
| 7 |
|
| 8 |
elementorFrontend.hooks.addAction( 'frontend/element_ready/property-map.default', function($scope, jQuery) |
| 9 |
{ |
| 10 |
initialize_property_map(); |
| 11 |
}); |
| 12 |
|
| 13 |
elementorFrontend.hooks.addAction( 'frontend/element_ready/property-street-view.default', function($scope, jQuery) |
| 14 |
{ |
| 15 |
initialize_property_street_view(); |
| 16 |
}); |
| 17 |
}); |