Skip to content

Commit

Permalink
reflex-dom: fix android back button handler
Browse files Browse the repository at this point in the history
  • Loading branch information
ali-abrar committed Aug 16, 2023
1 parent a65ee96 commit a723d93
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 4 additions & 0 deletions reflex-dom/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Revision history for reflex-dom

## 0.6.3.0

* Fix bug in android back button handler

## 0.6.2.0

* [#452](https://github.com/reflex-frp/reflex-dom/pull/452) Allow file access on newer android, following usage recommended by the [official docs](https://developer.android.com/reference/androidx/webkit/WebViewAssetLoader)
Expand Down
2 changes: 0 additions & 2 deletions reflex-dom/java/org/reflexfrp/reflexdom/MainWidget.java
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,6 @@ public final void goBack() {
public void run() {
if(wv.canGoBack()) {
wv.goBack();
} else {
a.defaultOnBackPressed();
}
}
});
Expand Down
2 changes: 1 addition & 1 deletion reflex-dom/reflex-dom.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 1.24
Name: reflex-dom
Version: 0.6.2.0
Version: 0.6.3.0
Synopsis: Functional Reactive Web Apps with Reflex
Description:
Web applications without callbacks or side-effects.
Expand Down

0 comments on commit a723d93

Please sign in to comment.