| Current Path : /proc/thread-self/root/proc/1908984/root/tmp/ |
| Current File : //proc/thread-self/root/proc/1908984/root/tmp/phpDDOR5R |
home/digilove/public_html/plugins/system/bdthemes_shortcodes/shortcodes/lightbox/js/lightbox.js 0000644 00000002160 15244067007 0027430 0 ustar 00 jQuery(document).ready(function($) {
$('.su-lightbox').each(function() {
$(this).on('click', function(e) {
var type = $(this).data('mfp-type');
e.preventDefault();
e.stopPropagation();
if (type === 'image') {
$(this).magnificPopup({
type: type,
mainClass: 'mfp-zoom-in mfp-img-mobile',
removalDelay: 500, //delay removal by X to allow out-animation
callbacks: {
imageLoadComplete: function() {
var self = this;
setTimeout(function() { self.wrap.addClass('mfp-image-loaded'); }, 16);
}
}
}).magnificPopup('open');
}
else {
$(this).magnificPopup({
type: type,
mainClass: 'mfp-img-mobile',
removalDelay: 0
}).magnificPopup('open');
}
});
});
});