diff options
author | 2013-06-09 16:08:59 +0200 | |
---|---|---|
committer | 2013-06-09 16:08:59 +0200 | |
commit | ecfef4a560dece9dd911017efdfc63fcc04bedfc (patch) | |
tree | 42d00f155c47a8a80e3a023c841a59f87b73885c /module/web/app/scripts/collections | |
parent | restructured webui to single-page-app, removed jinja (diff) | |
download | pyload-ecfef4a560dece9dd911017efdfc63fcc04bedfc.tar.xz |
adapted to jshint config
Diffstat (limited to 'module/web/app/scripts/collections')
5 files changed, 5 insertions, 0 deletions
diff --git a/module/web/app/scripts/collections/AccountList.js b/module/web/app/scripts/collections/AccountList.js index 1bcf87c1e..bfc2af5a3 100644 --- a/module/web/app/scripts/collections/AccountList.js +++ b/module/web/app/scripts/collections/AccountList.js @@ -1,4 +1,5 @@ define(['jquery', 'backbone', 'underscore', 'app', 'models/Account'], function($, Backbone, _, App, Account) { + 'use strict'; return Backbone.Collection.extend({ diff --git a/module/web/app/scripts/collections/FileList.js b/module/web/app/scripts/collections/FileList.js index e91088867..873f4c0e3 100644 --- a/module/web/app/scripts/collections/FileList.js +++ b/module/web/app/scripts/collections/FileList.js @@ -1,4 +1,5 @@ define(['jquery', 'backbone', 'underscore', 'models/File'], function($, Backbone, _, File) { + 'use strict'; return Backbone.Collection.extend({ diff --git a/module/web/app/scripts/collections/InteractionList.js b/module/web/app/scripts/collections/InteractionList.js index 57622a075..24f8b9248 100644 --- a/module/web/app/scripts/collections/InteractionList.js +++ b/module/web/app/scripts/collections/InteractionList.js @@ -1,5 +1,6 @@ define(['jquery', 'backbone', 'underscore', 'app', 'models/InteractionTask'], function($, Backbone, _, App, InteractionTask) { + 'use strict'; return Backbone.Collection.extend({ diff --git a/module/web/app/scripts/collections/PackageList.js b/module/web/app/scripts/collections/PackageList.js index a36f8bcdc..7bee861a4 100644 --- a/module/web/app/scripts/collections/PackageList.js +++ b/module/web/app/scripts/collections/PackageList.js @@ -1,4 +1,5 @@ define(['jquery', 'backbone', 'underscore', 'models/Package'], function($, Backbone, _, Package) { + 'use strict'; return Backbone.Collection.extend({ diff --git a/module/web/app/scripts/collections/ProgressList.js b/module/web/app/scripts/collections/ProgressList.js index 1706d5f16..51849d8de 100644 --- a/module/web/app/scripts/collections/ProgressList.js +++ b/module/web/app/scripts/collections/ProgressList.js @@ -1,4 +1,5 @@ define(['jquery', 'backbone', 'underscore', 'models/Progress'], function($, Backbone, _, Progress) { + 'use strict'; return Backbone.Collection.extend({ |