Increase fade out animation duration

This commit is contained in:
Jay Trees 2022-04-19 09:11:26 +02:00
parent 2831a132e6
commit e80b921e1c
2 changed files with 4 additions and 4 deletions

View file

@ -71,7 +71,7 @@ $(function() {
}, },
on : 'now', on : 'now',
onSuccess : function(response, element, xhr) { onSuccess : function(response, element, xhr) {
card.closest('.column').fadeOut(); card.closest('.column').fadeOut(800);
}, },
}); });
}); });

View file

@ -268,7 +268,7 @@ $(function () {
}, },
on: 'now', on: 'now',
onSuccess: function (response, wishlists) { onSuccess: function (response, wishlists) {
$('.wishlist-cards .column').fadeOut(); $('.wishlist-cards .column').fadeOut(800);
wishlists.dropdown('clear'); wishlists.dropdown('clear');
@ -312,7 +312,7 @@ $(function () {
}, },
on : 'now', on : 'now',
onSuccess : function(response, element, xhr) { onSuccess : function(response, element, xhr) {
card.closest('.column').fadeOut(); card.closest('.column').fadeOut(800);
}, },
}); });
}); });
@ -355,7 +355,7 @@ $(function () {
}, },
on : 'now', on : 'now',
onSuccess : function () { onSuccess : function () {
column.fadeOut(); column.fadeOut(800);
$('body').toast({ message: text.toast_wish_delete }); $('body').toast({ message: text.toast_wish_delete });