Skip to content
This repository was archived by the owner on Nov 30, 2022. It is now read-only.

Commit

Permalink
fix(back-button): fix android backbutton blurring out of window when …
Browse files Browse the repository at this point in the history
…goBack
  • Loading branch information
garygrossgarten committed Jul 17, 2019
1 parent ea24c1e commit 5920790
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/core/src/lib/back-button/routing-state.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class FivRoutingStateService {
}

handleAndroidBackButton() {
this.platform.backButton.subscribeWithPriority(9999, () => {
this.platform.backButton.subscribe(() => {
if (this.getHistory().length <= 1) {
// close the app because we are at root level
navigator['app'].exitApp();
Expand Down

0 comments on commit 5920790

Please sign in to comment.