Skip to content

Commit

Permalink
Version 271:
Browse files Browse the repository at this point in the history
* Overscroll is now explicitly turned off at the root of UI3, working around an issue with vertical swipes on iOS when running as a Progressive Web App (PWA).
  • Loading branch information
bp2008 committed Jul 7, 2024
1 parent cc16bf5 commit 4af376f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ui3.htm
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
};
</script>
<script type="text/javascript">
var ui_version = "270";
var ui_version = "271";
var bi_version = "%%VERSION%%";
var appPath_raw = "%%VIRTDIR%%";
var local_bi_session = "%%SESSION%%";
Expand Down
5 changes: 5 additions & 0 deletions ui3/ui3.css
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,11 @@ svg.stroke
width: 40px;
}
/* Main */
html
{
overscroll-behavior: none; /* Prevents overscroll of the entire page on iOS when swiping down in PWA */
}

a[role="button"]
{
cursor: pointer;
Expand Down

0 comments on commit 4af376f

Please sign in to comment.