diff options
Diffstat (limited to 'module/web/app/scripts/models/InteractionTask.js')
-rw-r--r-- | module/web/app/scripts/models/InteractionTask.js | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/module/web/app/scripts/models/InteractionTask.js b/module/web/app/scripts/models/InteractionTask.js index 56fdbf8bf..54c739d4b 100644 --- a/module/web/app/scripts/models/InteractionTask.js +++ b/module/web/app/scripts/models/InteractionTask.js @@ -1,5 +1,6 @@ define(['jquery', 'backbone', 'underscore', 'app', 'utils/apitypes'], function($, Backbone, _, App, Api) { + 'use strict'; return Backbone.Model.extend({ @@ -10,11 +11,11 @@ define(['jquery', 'backbone', 'underscore', 'app', 'utils/apitypes'], type: null, input: null, default_value: null, - title: "", - description: "", - plugin: "", + title: '', + description: '', + plugin: '', // additional attributes - result: "" + result: '' }, // Model Constructor |