summaryrefslogtreecommitdiffstats
path: root/module/web/app/scripts/collections
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-06-09 16:08:59 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-06-09 16:08:59 +0200
commitecfef4a560dece9dd911017efdfc63fcc04bedfc (patch)
tree42d00f155c47a8a80e3a023c841a59f87b73885c /module/web/app/scripts/collections
parentrestructured webui to single-page-app, removed jinja (diff)
downloadpyload-ecfef4a560dece9dd911017efdfc63fcc04bedfc.tar.xz
adapted to jshint config
Diffstat (limited to 'module/web/app/scripts/collections')
-rw-r--r--module/web/app/scripts/collections/AccountList.js1
-rw-r--r--module/web/app/scripts/collections/FileList.js1
-rw-r--r--module/web/app/scripts/collections/InteractionList.js1
-rw-r--r--module/web/app/scripts/collections/PackageList.js1
-rw-r--r--module/web/app/scripts/collections/ProgressList.js1
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({