diff --git a/budget/templates/list_bills.html b/budget/templates/list_bills.html index 18b3637..d9bbd66 100644 --- a/budget/templates/list_bills.html +++ b/budget/templates/list_bills.html @@ -16,15 +16,17 @@ // display the form when clicking on the "add bill" button var show_form = function(){ - $('#bill-form').show(70); + $('#bill-form').slideDown(1000); + $("#hide-bill-form").show(); $("#new-bill").hide(); return false; } // and provide a mechanism to hide it back var hide_form = function(){ - $("#bill-form").hide(70); + $("#bill-form").slideUp(1000); $("#new-bill").show(); + $("#hide-bill-form").hide(); return false; } @@ -138,7 +140,7 @@ {{ _("Add a new bill") }}