1
0
Fork 0

Phi-Map: cleanup aircraft icon

strip anything but the svg element from the loaded icon file
This commit is contained in:
Torsten Dreyer 2015-07-08 13:27:54 +02:00
parent e8849c882e
commit 07c6050707

View file

@ -7,6 +7,11 @@ define(
function ViewModel(params, componentInfo) {
var self = this;
{ // extract <svg> element from image xml (strip pi)
var xmlDoc = jquery.parseXML( aircraftSvg );
aircraftSvg = jquery( xmlDoc ).find("svg")[0].outerHTML;
}
self.element = componentInfo.element;
self.followAircraft = ko.observable(true);