auto merge of #12484 : TheHydroImpulse/rust/fix_js, r=huonw

This commit is contained in:
bors 2014-02-23 14:22:04 -08:00
commit cbed3321f5
1 changed files with 1 additions and 1 deletions

View File

@ -582,7 +582,7 @@
// Synchronize search bar with query string state and
// perform the search, but don't empty the bar if there's
// nothing there.
if params.search !== undefined {
if (params.search !== undefined) {
$('.search-input').val(params.search);
}
// Some browsers fire 'onpopstate' for every page load (Chrome), while others fire the