From 2ef1e3a8c2cf432286a4216dfec0cb0e4137f629 Mon Sep 17 00:00:00 2001 From: Mcat12 Date: Fri, 20 May 2016 16:29:35 -0400 Subject: [PATCH] Fix fade in bug on empty list If the list became empty, the "Your $list is empty!" message would not pop up, since the fadeIn call is out of that scope. --- list.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/list.php b/list.php index 8b54b96c..e482c604 100644 --- a/list.php +++ b/list.php @@ -93,8 +93,8 @@ require "footer.php"; '' ); }); - list.fadeIn("fast"); } + list.fadeIn("fast"); }, error: function(jqXHR, exception) { $("#alFailure").show();