diff --git a/CHANGELOG.md b/CHANGELOG.md index 57a72d4c..64783905 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/branch_view.js b/src/branch_view.js index 4a859950..dcf13fb4 100644 --- a/src/branch_view.js +++ b/src/branch_view.js @@ -63,7 +63,7 @@ function renderHtmlBlob(parent, html, hasApp, iframeLoadedCallback) { } else { - document.body.appendChild(iframe); + document.body.prepend(iframe); } return iframe; };