Skip to content

Commit

Permalink
Allow offline usage for POIs #1169 - Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
HarelM committed Jun 16, 2020
1 parent c0a71e0 commit 0ebf230
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ export class ProgressDialogComponent extends BaseMapComponent {
this.text = ex.message;
this.isError = true;
});
}
};

if (data.showContinueButton) {
this.text = data.continueText;
this.continueAction = () => {
this.isContinue = false;
wrappedAction();
}
};
} else {
wrappedAction();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,8 @@ export class ResourcesService {
this.cantEditWhileOffline = this.gettextCatalog.getString("You can't edit while offline...");
this.downloadingPoisForOfflineUsage = this.gettextCatalog.getString("Downloading points of interest for offline usage...");
this.useTheCloudIconToGoOffline = this.gettextCatalog.getString("Use the cloud icon to go offline");
this.largeFilesUseWifi = this.gettextCatalog.getString("You are about to download large files, you can change to wifi before clicking continue...");
this.largeFilesUseWifi = this.gettextCatalog
.getString("You are about to download large files, you can change to wifi before clicking continue...");
// Help
this.helpSubheader = this.gettextCatalog.getString("Basic instructions on using this site");
this.helpInfo = this.gettextCatalog.getString("This dialog");
Expand Down

0 comments on commit 0ebf230

Please sign in to comment.