Skip to content

Commit

Permalink
Merge pull request #3156 from antgonza/fix-3119
Browse files Browse the repository at this point in the history
fix #3119
  • Loading branch information
mestaki authored Nov 1, 2021
2 parents df4ad9a + 562e8f3 commit b648221
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions qiita_pet/templates/list_studies.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>',
Expand Down Expand Up @@ -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=",
Expand All @@ -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">',
Expand Down Expand Up @@ -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=",
Expand Down

0 comments on commit b648221

Please sign in to comment.