1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-24 07:30:10 +01:00
vichan/js/expand-all-images.js

57 lines
1.8 KiB
JavaScript
Raw Normal View History

2013-08-17 06:54:41 +02:00
/*
* expand-all-images.js
* https://github.com/savetheinternet/Tinyboard/blob/master/js/expand-all-images.js
*
* Adds an "Expand all images" button to the top of the page.
*
* Released under the MIT license
* Copyright (c) 2012-2013 Michael Save <savetheinternet@tinyboard.org>
* Copyright (c) 2013-2014 Marcin Łabanowski <marcin@6irc.net>
* Copyright (c) 2014 sinuca <#55ch@rizon.net>
2013-08-17 06:54:41 +02:00
*
* Usage:
* $config['additional_javascript'][] = 'js/jquery.min.js';
* $config['additional_javascript'][] = 'js/inline-expanding.js';
* $config['additional_javascript'][] = 'js/expand-all-images.js';
*
*/
2024-08-05 19:15:26 +02:00
if (active_page == 'ukko' || active_page == 'thread' || active_page == 'index') {
onready(function() {
$('hr:first').before('<div id="expand-all-images" style="text-align:right"><a class="unimportant" href="javascript:void(0)"></a></div>');
$('div#expand-all-images a')
.text(_('Expand all images'))
.click(function() {
$('a img.post-image').each(function() {
// Don't expand YouTube embeds
if ($(this).parent().parent().hasClass('video-container')) {
return;
}
2024-08-05 19:15:26 +02:00
// or WEBM
if (/^\/player\.php\?/.test($(this).parent().attr('href'))) {
return;
}
2024-08-05 19:15:26 +02:00
if (!$(this).parent().data('expanded')) {
$(this).parent().click();
}
});
2024-08-05 19:15:26 +02:00
if (!$('#shrink-all-images').length) {
$('hr:first').before('<div id="shrink-all-images" style="text-align:right"><a class="unimportant" href="javascript:void(0)"></a></div>');
}
2024-08-05 19:15:26 +02:00
$('div#shrink-all-images a')
.text(_('Shrink all images'))
.click(function() {
$('a img.full-image').each(function() {
if ($(this).parent().data('expanded')) {
$(this).parent().click();
}
});
$(this).parent().remove();
});
2024-08-05 19:15:26 +02:00
});
});
}