Skip to content

Commit b648221

Browse files
authored
Merge pull request #3156 from antgonza/fix-3119
fix #3119
2 parents df4ad9a + 562e8f3 commit b648221

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

qiita_pet/templates/list_studies.html

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
qiita_websocket.add_callback('sel', show_alert);
5757

5858
$('#user-studies-table').dataTable({
59+
"processing": true,
5960
"lengthMenu": [[5, 10, 50, -1], [5, 10, 50, "All"]],
6061
"deferRender": true,
6162
"sDom": 'l<"top">rti<"bottom"p>',
@@ -115,8 +116,9 @@
115116
}, targets: [6]},
116117
],
117118
"language": {
118-
"loadingRecords": "Please wait - loading information ...",
119-
"zeroRecords": "No studies found"
119+
"loadingRecords": 'Please wait ...',
120+
"processing": "~~ Loading information ~~",
121+
"zeroRecords": "No studies found",
120122
},
121123
"ajax": {
122124
"url": user_studies_ajaxURL + "&query=",
@@ -130,6 +132,7 @@
130132
});
131133

132134
$('#studies-table').dataTable({
135+
"processing": true,
133136
"lengthMenu": [[5, 10, 50, -1], [5, 10, 50, "All"]],
134137
"deferRender": true,
135138
"sDom": '<"top">rti<"bottom"p><"clear">',
@@ -180,8 +183,9 @@
180183
}, targets: [1]},
181184
],
182185
"language": {
183-
"loadingRecords": "Please wait - loading information ...",
184-
"zeroRecords": "No studies found"
186+
"loadingRecords": 'Please wait ...',
187+
"processing": "~~ Loading information ~~",
188+
"zeroRecords": "No studies found",
185189
},
186190
"ajax": {
187191
"url": studies_ajaxURL + "&query=",

0 commit comments

Comments
 (0)