jQuery(document).ready(function($) {
$('.wpm-title a.wpm-overlay, .wpm-img a.wpm-overlay').magnificPopup({
type:'iframe',
iframe: {
markup:
'
'
}, // HTML markup of popup, `mfp-close` will be replaced by the close button
disableOn: function() {
if($(window).width() < 600) {
return false;
}
return true;
}
});
$('.wpm-embedded').click(function(e) {
e.preventDefault();
$(this).parent().html('')
});
});