Revert "jQuery-ize the 404 page Google search"

This reverts commit 6b209f0d7e.
This commit is contained in:
Jeff Atwood 2014-10-20 00:22:24 -07:00
parent 6b209f0d7e
commit 736dd6c948
1 changed files with 2 additions and 1 deletions

View File

@ -37,7 +37,8 @@
<script language="Javascript">
function google_button_clicked(e) {
$('google-query').value = 'site:<%= local_domain %> ' + $('user-query').value;
var searchValue = document.getElementById('user-query').value;
document.getElementById('google-query').value = 'site:<%= local_domain %> ' + searchValue;
return true;
}