From 0ce9f323a4b6f5e389a392156b39412194093e7c Mon Sep 17 00:00:00 2001 From: Chris Hallberg <crhallberg@gmail.com> Date: Thu, 6 Jul 2017 17:11:20 -0400 Subject: [PATCH] Fix NoILS issues. --- themes/bootstrap3/templates/search/home.phtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/bootstrap3/templates/search/home.phtml b/themes/bootstrap3/templates/search/home.phtml index 20fbb4ff69f..3f108689e0e 100644 --- a/themes/bootstrap3/templates/search/home.phtml +++ b/themes/bootstrap3/templates/search/home.phtml @@ -28,7 +28,7 @@ $(document).ready(function() { data: {'offlineModeMsg':'ils_offline_home_message'}, url: VuFind.path + '/AJAX/JSON?method=getIlsStatus', success: function(response) { - $('.searchHomeContent').append(response.data); + $('.searchHomeContent').prepend(response.data); } }); }); -- GitLab