diff options
author | Rolf Eike Beer <eike@sf-mail.de> | 2019-03-15 21:59:09 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-03-16 10:06:26 -0700 |
commit | 2f6f48adec34f02df9e287ca10edc6bc4c4533d6 (patch) | |
tree | 237163ec0e425766a6576f98c8b1ffe15d65d757 /theme | |
parent | 0fb66fc91f1c4240ec8d06eb1d26ab6d882a960d (diff) | |
download | subsurface-2f6f48adec34f02df9e287ca10edc6bc4c4533d6.tar.gz |
mark JavaScript variables as local
Found by LGTM.
Signed-off-by: Rolf Eike Beer <eike@sf-mail.de>
Diffstat (limited to 'theme')
-rw-r--r-- | theme/list_lib.js | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/theme/list_lib.js b/theme/list_lib.js index 409229a91..1694e81cd 100644 --- a/theme/list_lib.js +++ b/theme/list_lib.js @@ -950,10 +950,11 @@ function get_bookmarks_HTML(dive) return result; } -function getDiveCoorString(coordinates){ - res = ""; - lat = coordinates.lat; - lon = coordinates.lon; +function getDiveCoorString(coordinates) +{ + var res = ""; + var lat = coordinates.lat; + var lon = coordinates.lon; res += float_to_deg(lat) + ' , ' + float_to_deg(lon); return res; } @@ -1043,7 +1044,7 @@ function remove_missing_photos() var actually_removed = 0; console.log(missing_ids.length); - for(i = 0; i < missing_ids.length; i++){ + for(var i = 0; i < missing_ids.length; i++){ dive.photos.splice(missing_ids[i] - actually_removed, 1); actually_removed++; } |