forked from leftypol/leftypol
Disable-able animated GIFs in a non-shitty way (unlike wizardchan)
This commit is contained in:
parent
e27c923b79
commit
dfe8ddc340
3 changed files with 65 additions and 8 deletions
51
js/no-animated-gif.js
Normal file
51
js/no-animated-gif.js
Normal file
|
@ -0,0 +1,51 @@
|
|||
/*
|
||||
* no-animated-gif.js - Toggle GIF animated thumbnails when gifsicle is enabled
|
||||
*
|
||||
* Copyright (c) 2014 Fredrick Brennan <admin@8chan.co>
|
||||
*
|
||||
* Usage:
|
||||
* $config['additional_javascript'][] = 'js/jquery.min.js';
|
||||
* $config['additional_javascript'][] = 'js/no-animated-gif.js';
|
||||
*/
|
||||
|
||||
function unanimate_gif(e) {
|
||||
var c = $('<canvas class="post-image"></canvas>');
|
||||
$(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('<div id="no-animated-gif" style="text-align:right"><a class="unimportant" href="javascript:void(0)">'+_('Unanimate GIFs')+'</a></div>')
|
||||
|
||||
$('#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);
|
||||
});
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue