Skip to content

Commit

Permalink
Favorites in Logs - Upload js #1054
Browse files Browse the repository at this point in the history
  • Loading branch information
2Abendsegler committed Nov 22, 2019
1 parent 3bd5e7c commit da6c17f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gc_little_helper_II.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -10939,7 +10939,7 @@ var mainGC = function() {
for (name in all_map_layers) {
html += " <option value='" + name + "' " + (settings_map_overview_layer == name ? "selected='selected'" : "") + "> " + name + "</option>";
}
html += '</select>';
html += '</select>' + '<br>';
html += " &nbsp;" + "Map zoom value: <select class='gclh_form' id='settings_map_overview_zoom'>";
for (var i = 1; i < 20; i++) {
html += " <option value='" + i + "' " + (settings_map_overview_zoom == i ? "selected=\"selected\"" : "") + ">" + i + "</option>";
Expand Down Expand Up @@ -10976,7 +10976,7 @@ var mainGC = function() {
for (var i = 1; i < elevationServicesData.length; i++) {
html += " <option value='"+i+"' " + (settings_primary_elevation_service == i ? "selected=\"selected\"" : "") + ">"+elevationServicesData[i]['name']+"</option>";
}
html += "</select>";
html += "</select>" + "<br>";
html += "&nbsp;&nbsp;" + "Second service: <select class='gclh_form' id='settings_secondary_elevation_service' style='width: 160px;'>";
for (var i = 0; i < elevationServicesData.length; i++) {
html += " <option value='"+i+"' " + (settings_secondary_elevation_service == i ? "selected=\"selected\"" : "") + ">"+elevationServicesData[i]['name']+"</option>";
Expand Down Expand Up @@ -11010,7 +11010,7 @@ var mainGC = function() {
html += " <option value=\"2\" " + (settings_show_openrouteservice_medium == "2" ? "selected=\"selected\"" : "") + ">Pedestrian walking</option>";
html += " <option value=\"2b\" " + (settings_show_openrouteservice_medium == "2b" ? "selected=\"selected\"" : "") + ">Pedestrian hiking</option>";
html += " <option value=\"3\" " + (settings_show_openrouteservice_medium == "3" ? "selected=\"selected\"" : "") + ">Wheelchair (only Europe)</option>";
html += "</select>";
html += "</select>" + "<br>";
html += newParameterVersionSetzen("0.10") + newParameterOff;
html += newParameterOn3;
html += checkboxy('settings_show_all_logs_but', 'Show button \"Show all logs\" above the logs') + "<br>";
Expand Down

0 comments on commit da6c17f

Please sign in to comment.