Close zoomed image when clicking the parent div instead of image
Makes it easier to close on mobile
This commit is contained in:
parent
835d6c71fa
commit
928fa7a3fc
|
@ -28,7 +28,6 @@
|
|||
z-index: 30;
|
||||
overflow: hidden;
|
||||
right: 0;
|
||||
top: 50px;
|
||||
aspect-ratio: 2 / 3;
|
||||
width: fit-content;
|
||||
max-height: calc(60vh - 60px);
|
||||
|
@ -373,7 +372,6 @@
|
|||
overflow: hidden;
|
||||
display: none;
|
||||
right: 0;
|
||||
top: 50px;
|
||||
aspect-ratio: 2 / 3;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
|
|
|
@ -10241,7 +10241,7 @@ jQuery(async function () {
|
|||
if (power_user.zoomed_avatar_magnification)
|
||||
$('.zoomed_avatar_container').izoomify();
|
||||
|
||||
zoomedAvatarImgElement.on('click', (e) => {
|
||||
$('.zoomed_avatar').on('click', (e) => {
|
||||
$(`.zoomed_avatar[forChar="${charname}"]`).fadeOut();
|
||||
setTimeout(function() { $(`.zoomed_avatar[forChar="${charname}"]`).remove(); }, 410);
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue