Skip to content

Commit 7c1aaef

Browse files
author
Mike Taylor
committed
Issue #372 - Rename checkParams to checkURLParams
1 parent b39eb26 commit 7c1aaef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webcompat/static/js/lib/issue-list.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ issueList.IssueView = Backbone.View.extend({
245245
initialize: function() {
246246
this.issues = new issueList.IssueCollection();
247247
// check to see if we should pre-filter results
248-
this.checkParams();
248+
this.checkURLParams();
249249

250250
// set up event listeners.
251251
issueList.events.on('issues:update', _.bind(this.updateIssues, this));
@@ -254,7 +254,7 @@ issueList.IssueView = Backbone.View.extend({
254254
wcEvents.on('dropdown:change', _.bind(this.updateModelParams, this));
255255
},
256256
template: _.template($('#issuelist-issue-tmpl').html()),
257-
checkParams: function() {
257+
checkURLParams: function() {
258258
// Assumes a URI like: /?untriaged=1 and activates the untriaged filter,
259259
// for example.
260260
var category;

0 commit comments

Comments
 (0)