aboutsummaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorGodwin peter .O <gpproton@live.com>2018-10-16 02:58:09 +0100
committerGitHub <noreply@github.com>2018-10-16 02:58:09 +0100
commitf4b596869e8f5e9af19f18fb33cb146742a8c252 (patch)
tree8941a74b37791a02f04fb9068a841e75e96beeff /web
parent487de5e2b87fa1dde2b8c8685e9a6617d1eff694 (diff)
downloadetbsa-traccar-web-f4b596869e8f5e9af19f18fb33cb146742a8c252.tar.gz
etbsa-traccar-web-f4b596869e8f5e9af19f18fb33cb146742a8c252.tar.bz2
etbsa-traccar-web-f4b596869e8f5e9af19f18fb33cb146742a8c252.zip
Update TouchFix62.js
Diffstat (limited to 'web')
-rw-r--r--web/app/view/TouchFix62.js11
1 files changed, 5 insertions, 6 deletions
diff --git a/web/app/view/TouchFix62.js b/web/app/view/TouchFix62.js
index 59c9baf..300d4f7 100644
--- a/web/app/view/TouchFix62.js
+++ b/web/app/view/TouchFix62.js
@@ -15,18 +15,18 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-/**
- * workaround for bug in ExtJs 6.2.0.
+/*
+ * Workaround for bug in ExtJs 6.2.0.
* Resolved in current yet unreleased version
*/
Ext.define('Traccar.view.TouchFix62', {
override: 'Ext.dom.Element'
},
-function(){
+function () {
var additiveEvents = this.prototype.additiveEvents,
eventMap = this.prototype.eventMap;
- if(Ext.supports.TouchEvents && Ext.firefoxVersion >= 52 && Ext.os.is.Desktop){
+ if (Ext.supports.TouchEvents && Ext.firefoxVersion >= 52 && Ext.os.is.Desktop) {
eventMap['touchstart'] = 'mousedown';
eventMap['touchmove'] = 'mousemove';
eventMap['touchend'] = 'mouseup';
@@ -40,10 +40,9 @@ function(){
additiveEvents['touchmove'] = 'touchmove';
additiveEvents['touchend'] = 'touchend';
additiveEvents['touchcancel'] = 'touchcancel';
-
additiveEvents['pointerdown'] = 'mousedown';
additiveEvents['pointermove'] = 'mousemove';
additiveEvents['pointerup'] = 'mouseup';
additiveEvents['pointercancel'] = 'mouseup';
}
-})
+});