From ee195354d96e698a521cf9584e2f4e85190dc5ef Mon Sep 17 00:00:00 2001 From: maTh Date: Tue, 27 Jun 2023 11:06:39 +0200 Subject: Global view: reduce overhead (#5496) --- p/scripts/global_view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'p/scripts') 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) { -- cgit v1.2.3