diff options
-rw-r--r-- | web/templates/layout.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web/templates/layout.html b/web/templates/layout.html index 8bf9671..3b75cbc 100644 --- a/web/templates/layout.html +++ b/web/templates/layout.html @@ -87,9 +87,9 @@ def alpha_url(baseurl): customSearchControl = new google.search.CustomSearchControl(cse_api_key); customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET); var options = new google.search.DrawOptions(); - //options.enableSearchResultsOnly(); - options.enableSearchResultsOnly("http://google.com/cse?cx="+cse_api_key, null, true); - options.setAutoComplete(true); + options.setAutoComplete(true); + options.enableSearchResultsOnly(); + //options.enableSearchResultsOnly("http://google.com/cse?cx="+cse_api_key, null, true); //options.enableSearchboxOnly("http://google.com/cse?cx="+cse_api_key, null, true); customSearchControl.draw('cse'); }, true); |