Current Path : /var/www/html/clients/td-teplouchet.ru/old/sites/all/modules/colorbox/js/ |
Current File : /var/www/html/clients/td-teplouchet.ru/old/sites/all/modules/colorbox/js/colorbox.js |
(function ($) { Drupal.behaviors.initColorbox = { attach: function (context, settings) { if (!$.isFunction($.colorbox)) { return; } if (settings.colorbox.mobiledetect && window.matchMedia) { // Disable Colorbox for small screens. mq = window.matchMedia("(max-device-width: " + settings.colorbox.mobiledevicewidth + ")"); if (mq.matches) { return; } } $('.colorbox', context) .once('init-colorbox') .colorbox(settings.colorbox); } }; { $(document).bind('cbox_complete', function () { Drupal.attachBehaviors('#cboxLoadedContent'); }); } })(jQuery);