aboutsummaryrefslogtreecommitdiff
path: root/web/app/DeviceImages.js
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2016-11-26 14:21:48 +0700
committerAbyss777 <abyss@fox5.ru>2016-11-26 14:21:48 +0700
commit020a2409a58e73e988a108e314006f45b436b572 (patch)
treec5b5f5a2734a5689aa1502aa84f6791762efbd74 /web/app/DeviceImages.js
parent70fac91c8a3386fda51b9c889bfbd27c66cf605a (diff)
downloadetbsa-traccar-web-020a2409a58e73e988a108e314006f45b436b572.tar.gz
etbsa-traccar-web-020a2409a58e73e988a108e314006f45b436b572.tar.bz2
etbsa-traccar-web-020a2409a58e73e988a108e314006f45b436b572.zip
Totally update device marker instead of updating only image src
Diffstat (limited to 'web/app/DeviceImages.js')
-rw-r--r--web/app/DeviceImages.js9
1 files changed, 1 insertions, 8 deletions
diff --git a/web/app/DeviceImages.js b/web/app/DeviceImages.js
index a05a815..b31f3ed 100644
--- a/web/app/DeviceImages.js
+++ b/web/app/DeviceImages.js
@@ -98,15 +98,8 @@ Ext.define('Traccar.DeviceImages', {
},
rotateImageIcon: function (image, angle) {
- var svg = Traccar.DeviceImages.getImageSvg(image.fill, image.zoom, angle, image.category);
+ var svg = this.getImageSvg(image.fill, image.zoom, angle, image.category);
image.getImage().src = this.formatSrc(svg);
image.angle = angle;
- },
-
- changeImageColor: function (image, color, category) {
- var svg = Traccar.DeviceImages.getImageSvg(color, image.zoom, image.angle, category);
- image.getImage().src = this.formatSrc(svg);
- image.fill = color;
- image.category = category;
}
});