We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09c4efc commit ebe87b8Copy full SHA for ebe87b8
tutorials/themes/tutorials-theme/static/searchtools.js
@@ -9,6 +9,9 @@
9
*
10
*/
11
12
+// Set ajaxSetup to synchronous to make a synchronous $.get call (but could be bad form).
13
+// See https://stackoverflow.com/a/25489055/9959073 for details.
14
+jQuery.ajaxSetup({async:false});
15
16
/* Non-minified version JS is _stemmer.js if file is provided */
17
/**
@@ -320,10 +323,6 @@ function splitQuery(query) {
320
323
return result;
321
324
}
322
325
-// Set ajaxSetup to synchronous to make a synchronous $.get call (but could be bad form).
-// See https://stackoverflow.com/a/25489055/9959073 for details.
-jQuery.ajaxSetup({async:false});
326
-
327
var docResultsCount = -1;
328
329
* Search Module
0 commit comments