Skip to content

Commit

Permalink
Issue #563. Make JSHint happy.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Taylor committed Sep 17, 2015
1 parent 24fa441 commit 973c019
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webcompat/static/js/lib/issue-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ issueList.IssueView = Backbone.View.extend({

// There are some params in the URL
if (urlParams.length !== 0) {
queryMatch = urlParams.match(this._searchRegex)
queryMatch = urlParams.match(this._searchRegex);
if (!this._isLoggedIn && queryMatch) {
// We're dealing with an un-authed user, with a q param.
this.doGitHubSearch(urlParams);
Expand Down Expand Up @@ -357,8 +357,8 @@ issueList.IssueView = Backbone.View.extend({
doGitHubSearch: function(params) {
// Bypass our server and request GitHub search results (from the client)
// to avoid being penalized for unauthed Search API requests.
var gitHubSearchURL = this._githubSearchEndpoint + '?'
+ $.param(this.issues.normalizeAPIParams(params));
var gitHubSearchURL = this._githubSearchEndpoint + '?' +
$.param(this.issues.normalizeAPIParams(params));
this.fetchAndRenderIssues({url: gitHubSearchURL});
},
fetchAndRenderIssues: function(options) {
Expand Down

0 comments on commit 973c019

Please sign in to comment.