diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2011-07-08 02:28:12 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2011-07-08 02:28:12 +0000 |
commit | 886df2ea389104976eee87a728b469cc2ac1ab02 (patch) | |
tree | 93599d9338a480c097662d6e8318245347519ac9 | |
parent | More CSE debug. (diff) | |
download | packages-3-886df2ea389104976eee87a728b469cc2ac1ab02.tar.gz packages-3-886df2ea389104976eee87a728b469cc2ac1ab02.tar.bz2 packages-3-886df2ea389104976eee87a728b469cc2ac1ab02.zip |
CSE API seems annoying.
-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); |