/* * no-animated-gif.js - Toggle GIF animated thumbnails when gifsicle is enabled * * Copyright (c) 2014 Fredrick Brennan * * Usage: * $config['additional_javascript'][] = 'js/jquery.min.js'; * $config['additional_javascript'][] = 'js/no-animated-gif.js'; */ function unanimate_gif(e) { var c = $(''); $(e).parent().prepend(c); c.attr('width', $(e).width()); c.attr('height',$(e).height()); c[0].getContext('2d').drawImage(e, 0, 0, $(e).width(), $(e).height()); $(e).hide(); } function no_animated_gif() { var anim_gifs = $('img.post-image[src$=".gif"]'); localStorage.no_animated_gif = true; $('#no-animated-gif>a').text(_('Animate GIFs')); $.each(anim_gifs, function(i, e) {unanimate_gif(e)} ); } function animated_gif() { $('canvas.post-image').remove(); $('img.post-image').show(); localStorage.no_animated_gif = false; $('#no-animated-gif>a').text(_('Unanimate GIFs')); } if (active_page == 'thread' || active_page == 'index' || active_page == 'ukko') { onready(function(){ $('hr:first').before('
'+_('Unanimate GIFs')+'
') $('#no-animated-gif').on('click', function() { if (localStorage.no_animated_gif === 'true') { animated_gif(); } else { no_animated_gif(); } }); if (localStorage.no_animated_gif === 'true') $(document).ready(no_animated_gif); }); }