Ver Fonte

Global view: reduce overhead (#5496)

maTh há 2 anos atrás
pai
commit
ee195354d9
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      p/scripts/global_view.js

+ 1 - 1
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) {