Эх сурвалжийг харах

Focus the search box on the main page only

Lorna Jane Mitchell 7 жил өмнө
parent
commit
b0686ba3fd

+ 5 - 1
src/Packagist/WebBundle/Resources/public/js/search.js

@@ -57,13 +57,17 @@ var search = instantsearch({
     searchParameters: searchParameters
 });
 
+var autofocus = false;
+if(location.pathname == "/") {
+    autofocus = true;
+}
 search.addWidget(
     instantsearch.widgets.searchBox({
         container: '#search_query_query',
         magnifier: false,
         reset: false,
         wrapInput: false,
-        autofocus: true
+        autofocus: autofocus
     })
 );