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.
This commit is contained in:
Mcat12
2016-05-20 16:29:35 -04:00
parent 82e92e99cc
commit 2ef1e3a8c2
+1 -1
View File
@@ -93,8 +93,8 @@ require "footer.php";
'<span class="glyphicon glyphicon-trash"></span></button></li>'
);
});
list.fadeIn("fast");
}
list.fadeIn("fast");
},
error: function(jqXHR, exception) {
$("#alFailure").show();