/home/awneajlw/www/wp-content/plugins/radiantthemes-addons/assets/js/popup-video.js
var WidgetRadiantPopupVideoHandler = function ($scope, $) {
	// RADIANTTHEMES POPUP VIDEO.
	$(".rt-popup-video").each(function () {
		$(this).find(".video-link").fancybox({
			defaults: {
				speed: 1000,
			},
		});
	});
};

jQuery(window).on("elementor/frontend/init", function () {
	elementorFrontend.hooks.addAction(
		"frontend/element_ready/radiant-popup-video.default",
		WidgetRadiantPopupVideoHandler
	);
});