Coupon slidedown animation clipping effect, fixes #3590

This commit is contained in:
Legradi Szabolcs 2013-08-06 10:36:28 +02:00
parent 110d8c3026
commit 94f8baee1a
1 changed files with 3 additions and 2 deletions

View File

@ -92,8 +92,9 @@ jQuery(document).ready(function($) {
});
$('a.showcoupon').click(function(){
$('.checkout_coupon').slideToggle();
$('#coupon_code').focus();
$('.checkout_coupon').slideToggle(400, function() {
$('#coupon_code').focus();
});
return false;
});