Skip to content

Commit

Permalink
Indentation fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mpetazzoni authored May 18, 2020
1 parent c6506af commit 9877256
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gpx.js
Original file line number Diff line number Diff line change
Expand Up @@ -404,8 +404,8 @@ L.GPX = L.FeatureGroup.extend({
} else if (wptIconUrls && wptIconUrls[symKey]){
symIcon = new L.GPXTrackIcon({iconUrl: wptIconUrls[symKey]});
} else if (wptIconTypeUrls && wptIconTypeUrls[typeKey]){
symIcon = new L.GPXTrackIcon({iconUrl: wptIconTypeUrls[typeKey]});
} else if (wptIcons && wptIcons['']) {
symIcon = new L.GPXTrackIcon({iconUrl: wptIconTypeUrls[typeKey]});
} else if (wptIcons && wptIcons['']) {
symIcon = wptIcons[''];
} else if (wptIconUrls && wptIconUrls['']) {
symIcon = new L.GPXTrackIcon({iconUrl: wptIconUrls['']});
Expand Down Expand Up @@ -614,4 +614,4 @@ if (typeof module === 'object' && typeof module.exports === 'object') {
module.exports = L;
} else if (typeof define === 'function' && define.amd) {
define(L);
}
}

0 comments on commit 9877256

Please sign in to comment.