From 2f6f48adec34f02df9e287ca10edc6bc4c4533d6 Mon Sep 17 00:00:00 2001 From: Rolf Eike Beer Date: Fri, 15 Mar 2019 21:59:09 +0100 Subject: [PATCH] mark JavaScript variables as local Found by LGTM. Signed-off-by: Rolf Eike Beer --- theme/list_lib.js | 11 ++++++----- 1 file 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++; }