From 562e8f3cf81b477373bd31218cf8e4e7393cbfe5 Mon Sep 17 00:00:00 2001 From: Antonio Gonzalez Date: Tue, 19 Oct 2021 08:35:14 -0600 Subject: [PATCH] fix #3119 --- qiita_pet/templates/list_studies.html | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/qiita_pet/templates/list_studies.html b/qiita_pet/templates/list_studies.html index 3b7f86778..d95986ac1 100644 --- a/qiita_pet/templates/list_studies.html +++ b/qiita_pet/templates/list_studies.html @@ -56,6 +56,7 @@ qiita_websocket.add_callback('sel', show_alert); $('#user-studies-table').dataTable({ + "processing": true, "lengthMenu": [[5, 10, 50, -1], [5, 10, 50, "All"]], "deferRender": true, "sDom": 'l<"top">rti<"bottom"p>', @@ -115,8 +116,9 @@ }, targets: [6]}, ], "language": { - "loadingRecords": "Please wait - loading information ...", - "zeroRecords": "No studies found" + "loadingRecords": 'Please wait ...', + "processing": "~~ Loading information ~~", + "zeroRecords": "No studies found", }, "ajax": { "url": user_studies_ajaxURL + "&query=", @@ -130,6 +132,7 @@ }); $('#studies-table').dataTable({ + "processing": true, "lengthMenu": [[5, 10, 50, -1], [5, 10, 50, "All"]], "deferRender": true, "sDom": '<"top">rti<"bottom"p><"clear">', @@ -180,8 +183,9 @@ }, targets: [1]}, ], "language": { - "loadingRecords": "Please wait - loading information ...", - "zeroRecords": "No studies found" + "loadingRecords": 'Please wait ...', + "processing": "~~ Loading information ~~", + "zeroRecords": "No studies found", }, "ajax": { "url": studies_ajaxURL + "&query=",