소스 검색

[beeswax] Fix async problem of loading of tables/autocomplete

Enrico Berti 10 년 전
부모
커밋
97fd947750
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      apps/beeswax/src/beeswax/static/beeswax/js/autocomplete.utils.js

+ 1 - 1
apps/beeswax/src/beeswax/static/beeswax/js/autocomplete.utils.js

@@ -28,7 +28,7 @@ function hac_jsoncalls(options) {
       type: "GET",
       url: _url + "?" + Math.random(),
       success: options.onDataReceived,
-      async: options.sync == "undefined"
+      async: typeof options.sync == "undefined"
     });
   }
 }