7 lines
147 B
JavaScript
7 lines
147 B
JavaScript
|
(function() {
|
||
|
$('img[src*="thumb"]').parent('a').click(function(e) {
|
||
|
e.preventDefault();
|
||
|
$(this).ekkoLightbox();
|
||
|
});
|
||
|
})();
|