mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
Thumbnail toggle function.
This commit is contained in:
parent
e10d4b91cf
commit
026de8c5ca
@ -153,6 +153,14 @@ $('[data-action="expand-entity-list-details"]').click(function() {
|
|||||||
$('.entity-list.compact').find('p').not('.empty-text').slideToggle(240);
|
$('.entity-list.compact').find('p').not('.empty-text').slideToggle(240);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Toggle thumbnail::hide image and reduce grid size
|
||||||
|
$(document).ready(function(){
|
||||||
|
$('[data-action="expand-thumbnail"]').click(function(){
|
||||||
|
$('.galleryItem').toggleClass("collapse");
|
||||||
|
$('.galleryItem').find('img').slideToggle(50);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
// Popup close
|
// Popup close
|
||||||
$('.popup-close').click(function() {
|
$('.popup-close').click(function() {
|
||||||
$(this).closest('.overlay').fadeOut(240);
|
$(this).closest('.overlay').fadeOut(240);
|
||||||
|
Loading…
Reference in New Issue
Block a user