1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-24 22:35:49 -04:00

added jshint

This commit is contained in:
kayone
2013-11-10 20:09:11 -08:00
parent 9536c6c1bb
commit 47d924cff3
30 changed files with 177 additions and 127 deletions
+1 -1
View File
@@ -80,7 +80,7 @@ define(
this.collection.reset();
if (!options.term || options.term === this.collection.term) {
return $.Deferred().resolve();
return Marionette.$.Deferred().resolve();
}
this.searchResult.show(new LoadingView());
@@ -2,8 +2,9 @@
define(
[
'backbone',
'AddSeries/Existing/UnmappedFolderModel'
], function (Backbone, UnmappedFolderModel) {
'AddSeries/Existing/UnmappedFolderModel',
'underscore'
], function (Backbone, UnmappedFolderModel,_) {
return Backbone.Collection.extend({
model: UnmappedFolderModel,