From c1eb91d66a9f70ae10285f0b2d2fe82830fc5876 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Wed, 23 Dec 2015 19:09:39 +1300 Subject: Fix JavaScript warnings and style issues --- web/app/controller/Root.js | 2 +- web/app/view/Devices.js | 2 +- web/app/view/MapController.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/web/app/controller/Root.js b/web/app/controller/Root.js index fd76ab159..7978d1b1b 100644 --- a/web/app/controller/Root.js +++ b/web/app/controller/Root.js @@ -84,7 +84,7 @@ Ext.define('Traccar.controller.Root', { }, asyncUpdate: function (first) { - var socket = new WebSocket("ws://" + window.location.host + "/api/socket"); + var socket = new WebSocket('ws://' + window.location.host + '/api/socket'); socket.onmessage = function (event) { var i, store, data, array, entity; diff --git a/web/app/view/Devices.js b/web/app/view/Devices.js index 21bea6980..66c4e813b 100644 --- a/web/app/view/Devices.js +++ b/web/app/view/Devices.js @@ -42,7 +42,7 @@ Ext.define('Traccar.view.Devices', { }, { xtype: 'tbfill' }, { - id:'deviceFollowButton', + id: 'deviceFollowButton', glyph: 'xf05b@FontAwesome', tooltip: Strings.deviceFollow, tooltipType: 'title', diff --git a/web/app/view/MapController.js b/web/app/view/MapController.js index e4ce53b57..ce420c2ec 100644 --- a/web/app/view/MapController.js +++ b/web/app/view/MapController.js @@ -79,7 +79,7 @@ Ext.define('Traccar.view.MapController', { }, updateDevice: function (store, data) { - var i, device, deviceId; + var i, device, deviceId, marker; if (!Ext.isArray(data)) { data = [data]; -- cgit v1.2.3