Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Fix Image Thumnbail to Cropping || For Module 27 in Page */
- (function ($) {
- $(window).ready(function () {
- var img = $('.page-template .container .jeg_postblock_27 .jeg_post img');
- $.map(img, function (n) {
- var src = $(n).attr('data-srcset').split(',');
- src = src[0].split('350w');
- var replace = src[0].replace(/-350x250/g, '');
- $(n).attr('src', replace);
- $(n).attr('data-src', replace);
- $(n).attr('data-srcset', replace);
- $(n).attr('srcset', replace);
- })
- })
- })(jQuery);
Add Comment
Please, Sign In to add comment