Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ All notable changes to the Branch Web SDK will be documented here.
The Branch Web SDK adheres to [Semantic Versioning](http://semver.org/).

## [VERSION] - unreleased
## [2.86.0] - 2024-11-12
- Switched from appending to prepending journey content on mobile devices so screen readers read the journey first before the underlying page.
## [2.85.4] - 2024-11-11
- updates release process
## [2.85.2] - 2024-11-11
Expand Down
2 changes: 1 addition & 1 deletion src/branch_view.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function renderHtmlBlob(parent, html, hasApp, iframeLoadedCallback) {
}
else
{
document.body.appendChild(iframe);
document.body.prepend(iframe);
}
return iframe;
};
Expand Down
Loading