From 886df2ea389104976eee87a728b469cc2ac1ab02 Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Fri, 8 Jul 2011 02:28:12 +0000 Subject: CSE API seems annoying. --- web/templates/layout.html | 6 +++--- 1 file 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); -- cgit v1.2.3-65-gdbad