Skip to content

Commit

Permalink
Fixed invalid JavaScript
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Fagnan <dnfagnan@gmail.com>
  • Loading branch information
thehydroimpulse committed Feb 23, 2014
1 parent 22d3669 commit c08cfa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustdoc/html/static/main.js
Expand Up @@ -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
Expand Down

9 comments on commit c08cfa1

@bors
Copy link
Contributor

@bors bors commented on c08cfa1 Feb 23, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from huonw
at thehydroimpulse@c08cfa1

@bors
Copy link
Contributor

@bors bors commented on c08cfa1 Feb 23, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging TheHydroImpulse/rust/fix_js = c08cfa1 into auto

@bors
Copy link
Contributor

@bors bors commented on c08cfa1 Feb 23, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TheHydroImpulse/rust/fix_js = c08cfa1 merged ok, testing candidate = 98339a66

@bors
Copy link
Contributor

@bors bors commented on c08cfa1 Feb 23, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on c08cfa1 Feb 23, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from huonw
at thehydroimpulse@c08cfa1

@bors
Copy link
Contributor

@bors bors commented on c08cfa1 Feb 23, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging TheHydroImpulse/rust/fix_js = c08cfa1 into auto

@bors
Copy link
Contributor

@bors bors commented on c08cfa1 Feb 23, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TheHydroImpulse/rust/fix_js = c08cfa1 merged ok, testing candidate = cbed332

@bors
Copy link
Contributor

@bors bors commented on c08cfa1 Feb 23, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on c08cfa1 Feb 23, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = cbed332

Please sign in to comment.