I have noticed that on small resolutions when I click the image the popup doesn't open but the k2 item loads.
I don't want this functionality. I would like the popups to load on small resolutions as well.
How do I manage this functionality?
if(window.getSize().x > 600) {
e.preventDefault();
current_popup_image = i;
popup.addClass('activated');
showItem(img);
setTimeout(function() {
popup.addClass('active');
}, 50);
}