Fixing jshint errors

This commit is contained in:
Mark McDowall 2014-03-01 11:48:18 -08:00
parent 3a6df8d3c4
commit ce31732b95
1 changed files with 3 additions and 1 deletions

View File

@ -50,7 +50,9 @@ define(
var column = this.column;
var selected = parseInt(this.$el.val(), 10);
var qualityProfileItem = _.find(this.schema.get('items'), function(model) { return model.quality.id == selected });
var qualityProfileItem = _.find(this.schema.get('items'), function(model) {
return model.quality.id === selected;
});
var newQuality = {
proper : false,