From 2c638cd0eec9883902b363e2f24f8c3c2f7ceccb Mon Sep 17 00:00:00 2001 From: zsloan Date: Thu, 8 Jul 2021 21:22:09 +0000 Subject: Only use Scroller when there are more than 5 results, since it can cause issues if there are only a few rows and the window size is small --- wqflask/wqflask/templates/search_result_page.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wqflask/wqflask/templates/search_result_page.html b/wqflask/wqflask/templates/search_result_page.html index 00b708ef..3e4928df 100644 --- a/wqflask/wqflask/templates/search_result_page.html +++ b/wqflask/wqflask/templates/search_result_page.html @@ -435,7 +435,9 @@ "bSortClasses": false, "scrollY": "500px", "scrollCollapse": true, + {% if trait_list|length > 5 %} "scroller": true, + {% endif %} "iDisplayLength": -1, "initComplete": function (settings) { //Add JQueryUI resizable functionality to each th in the ScrollHead table -- cgit 1.4.1