소스 검색

Global view: reduce overhead (#5496)

maTh 2 년 전
부모
커밋
ee195354d9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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) {