PluginProbe
King Addons for Elementor – 100+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce Builder, Mega Menu, Popup Builder / 51.1.86
King Addons for Elementor – 100+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce Builder, Mega Menu, Popup Builder v51.1.86
51.1.86 51.1.84 51.1.85 51.1.83 51.1.82 51.1.81 51.1.79 51.1.78 51.1.77 51.1.76 51.1.74 51.1.75 51.1.65 51.1.64 51.1.63 trunk 51.1.14 51.1.2 51.1.35 51.1.36 51.1.37 51.1.38 51.1.39 51.1.44 51.1.45 All 40 releases
← All changes | includes/widgets/Video_Popup/Video_Popup.php +7 -0 51.1.65 → 51.1.86 View file →
@@ -839,8 +839,15 @@
839 839 document.addEventListener('DOMContentLoaded', function () {
840 840
841 841 const offCanvas = document.querySelector('." . esc_js($class_ID) . "');
842 842 const overlay = document.querySelector('." . esc_js($overlay_ID) . "');
843 +
844 + // With no template picked the widget prints a placeholder instead of
845 + // the panel markup, so these lookups come back empty. Bail out rather
846 + // than throwing on insertBefore and losing the handlers below.
847 + if (!offCanvas || !overlay) {
848 + return;
849 + }
843 850 const video = offCanvas ? offCanvas.querySelector('.king-addons-video-popup-video') : null;
844 851 const autoplayEnabled = " . $hosted_autoplay_js . ";
845 852 const popupButton = document.querySelector('.king-addons-video-popup-button-" . esc_js((string) $this_ID) . "');
846 853