cleaned up some jslint errors

This commit is contained in:
Keivan Beigi 2013-05-01 15:42:30 -07:00
parent 2683a3ca12
commit 50fd2f77b1
22 changed files with 65 additions and 42 deletions

View file

@ -1,4 +1,5 @@
define(['app', 'Series/SeriesModel'], function () {
"use strict";
define(['app', 'Series/SeriesModel'], function () {
NzbDrone.Series.SeriesCollection = Backbone.Collection.extend({
url : NzbDrone.Constants.ApiRoot + '/series',
model: NzbDrone.Series.SeriesModel,
@ -10,4 +11,4 @@
return model.get(this.defaultSortKey);
}
});
});
});