Skip to content

Commit

Permalink
Merge pull request #908 from shankari/remove_loading_overlay_while_lo…
Browse files Browse the repository at this point in the history
…ading_trajectories

Remove loading overlay while loading trajectories
  • Loading branch information
shankari authored Nov 3, 2022
2 parents a7faa7d + 91c0f4a commit 248b863
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions www/js/diary/services.js
Original file line number Diff line number Diff line change
Expand Up @@ -761,10 +761,6 @@ angular.module('emission.main.diary.services', ['emission.plugin.logger',
Logger.log("About to pull location data for range "
+ moment.unix(trip.start_ts).toString() + " -> "
+ moment.unix(trip.end_ts).toString());
// TODO: change this to recreated location
$ionicLoading.show({
template: $translate.instant('service.reading-server')
});

const fillPromises = [
CommHelper.getRawEntries(["analysis/recreated_location"], trip.start_ts, trip.end_ts, "data.ts", 100)
Expand All @@ -783,11 +779,9 @@ angular.module('emission.main.diary.services', ['emission.plugin.logger',
features: features,
properties: { }
}
$ionicLoading.hide();
return trip_gj;
}).catch((err) => {
Logger.displayError("while filling details", err);
$ionicLoading.hide();
});
}

Expand Down

0 comments on commit 248b863

Please sign in to comment.