change 'CSV' download to 'data CSV' to distinguish from track downloads

This commit is contained in:
Norbert Renner 2014-08-23 13:14:02 +02:00
parent c4d87b122c
commit 34e59e0734

View file

@ -14,7 +14,7 @@ BR.Download = BR.Control.extend({
html += '<a href="' + urls.gpx + '" download="brouter.gpx">GPX</a> &middot; ';
html += '<a href="' + urls.kml + '" download="brouter.kml">KML</a> &middot; ';
html += '<a href="' + urls.geojson + '" download="brouter.geojson">GeoJSON</a> &middot; ';
html += '<a href="' + urls.csv + '" download="brouter.tsv">CSV</a>';
html += '<a href="' + urls.csv + '" download="brouter.tsv">data CSV</a>';
}
html += '</div>';
this._content.innerHTML = html;