From 8b5bbc7a899205a40e1d246862f54ecb4b939682 Mon Sep 17 00:00:00 2001 From: Abyss777 Date: Tue, 8 Nov 2016 11:49:00 +0500 Subject: Load SVGs to html --- web/app/store/DeviceImages.js | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) (limited to 'web/app/store/DeviceImages.js') diff --git a/web/app/store/DeviceImages.js b/web/app/store/DeviceImages.js index 57745f1..4e49482 100644 --- a/web/app/store/DeviceImages.js +++ b/web/app/store/DeviceImages.js @@ -22,28 +22,28 @@ Ext.define('Traccar.store.DeviceImages', { data: [{ key: 'default', name: Strings.categoryDefault, - url: 'images/arrow.svg', + elementId: 'arrowSvg', rotateId: 'arrow', fillId: 'arrow', scale: 1 }, { key: 'car', name: Strings.categoryCar, - url: 'images/car.svg', + elementId: 'carSvg', fillId: 'path4149', rotateId: 'g4207', scale: 0.06, }, { key: 'bus', name: Strings.categoryBus, - url: 'images/bus.svg', + elementId: 'busSvg', fillId: 'path4713', rotateId: 'layer2', scale: 0.12, }, { key: 'truck', name: Strings.categoryTruck, - url: 'images/truck.svg', + elementId: 'truckSvg', fillId: 'path4718', rotateId: 'layer2', scale: 0.1, @@ -52,15 +52,7 @@ Ext.define('Traccar.store.DeviceImages', { constructor: function() { this.callParent(arguments); this.config.data.forEach(function (device) { - if (device.url) { - Ext.Ajax.request({ - url: device.url, - scope: device, - success: function (response) { - this.svg = new DOMParser().parseFromString(response.responseText, "image/svg+xml"); - } - }); - } + device.svg = document.getElementById(device.elementId).contentDocument; }); } }); \ No newline at end of file -- cgit v1.2.3