aboutsummaryrefslogtreecommitdiff
path: root/web/app/model/Attribute.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2015-10-04 18:23:32 +1300
committerAnton Tananaev <anton.tananaev@gmail.com>2015-10-04 18:23:32 +1300
commit99d132dc78b42b6cc5833b3a7faf30d2fe56186f (patch)
tree045052b15478c32c44f36a07c70885a756ea19b3 /web/app/model/Attribute.js
parentdcfe1d48998c3fb3baa704fafed43d996f329a07 (diff)
downloadtraccar-server-99d132dc78b42b6cc5833b3a7faf30d2fe56186f.tar.gz
traccar-server-99d132dc78b42b6cc5833b3a7faf30d2fe56186f.tar.bz2
traccar-server-99d132dc78b42b6cc5833b3a7faf30d2fe56186f.zip
Disable JavaScript strict mode
Diffstat (limited to 'web/app/model/Attribute.js')
-rw-r--r--web/app/model/Attribute.js30
1 files changed, 13 insertions, 17 deletions
diff --git a/web/app/model/Attribute.js b/web/app/model/Attribute.js
index df53d02f0..78acdb1d9 100644
--- a/web/app/model/Attribute.js
+++ b/web/app/model/Attribute.js
@@ -13,22 +13,18 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-(function () {
- 'use strict';
- Ext.define('Traccar.model.Attribute', {
- extend: 'Ext.data.Model',
+Ext.define('Traccar.model.Attribute', {
+ extend: 'Ext.data.Model',
- fields: [{
- name: 'priority',
- type: 'int'
- }, {
- name: 'name',
- type: 'string'
- }, {
- name: 'value',
- type: 'string'
- }]
- });
-
-})();
+ fields: [{
+ name: 'priority',
+ type: 'int'
+ }, {
+ name: 'name',
+ type: 'string'
+ }, {
+ name: 'value',
+ type: 'string'
+ }]
+});