Increase fade out animation duration
This commit is contained in:
parent
2831a132e6
commit
e80b921e1c
2 changed files with 4 additions and 4 deletions
|
@ -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);
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -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 });
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue