aboutsummaryrefslogtreecommitdiff
path: root/p/scripts
diff options
context:
space:
mode:
authorGravatar maTh <math-home@web.de> 2023-06-27 11:06:39 +0200
committerGravatar GitHub <noreply@github.com> 2023-06-27 11:06:39 +0200
commitee195354d96e698a521cf9584e2f4e85190dc5ef (patch)
tree79162f35212ae6abfe1f64de63dcc11ce0315429 /p/scripts
parent2f485096784c9638cd5909bb826aecaeed004988 (diff)
Global view: reduce overhead (#5496)
Diffstat (limited to 'p/scripts')
-rw-r--r--p/scripts/global_view.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/p/scripts/global_view.js b/p/scripts/global_view.js
index 2ada3e7a9..f131c4202 100644
--- a/p/scripts/global_view.js
+++ b/p/scripts/global_view.js
@@ -12,7 +12,7 @@ function load_panel(link) {
panel_loading = true;
const req = new XMLHttpRequest();
- req.open('GET', link, true);
+ req.open('GET', link + '&ajax=1', true);
req.responseType = 'document';
req.onload = function (e) {
if (this.status != 200) {