jQuery(document).ready(function ($) { 'use strict'; function initModal() { $('.popup-youtube, .popup-vimeo, .popup-gmaps').magnificPopup({ disableOn: 700, type: 'iframe', mainClass: 'mfp-fade', removalDelay: 160, preloader: false, fixedContentPos: false }); } // Check if magnificPopup is loaded if (jQuery().magnificPopup) { initModal(); } else { // Load the stylesheet $('', { rel: 'stylesheet', href: pluginLoadedParams.styleUrl }).appendTo('head'); // Load the script $.ajaxSetup({ cache: true }); $.getScript(pluginLoadedParams.scriptUrl, function () { initModal(); }); } });