mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-03-03 23:23:09 +08: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);
|
||||
});
|
||||
|
||||
// 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').click(function() {
|
||||
$(this).closest('.overlay').fadeOut(240);
|
||||
|
Loading…
x
Reference in New Issue
Block a user