Use valid mediatype for GPX export.

This commit is contained in:
Pierre GIRAUD
2014-10-03 11:30:44 +02:00
parent 6a1d143f9f
commit 8f6b49877f

View File

@@ -110,7 +110,7 @@ if ('download' in exportGPXElement) {
/** @type {Node} */ (node));
var base64 = exampleNS.strToBase64(string);
exportGPXElement.href =
'data:gpx+xml;base64,' + base64;
'data:text/gpx+xml;base64,' + base64;
}
}, false);
} else {