Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -498,6 +498,13 @@
this.errorLoading = true;
this.reportLoadingError(err);
});

// sets the iframe to be the first element in the tab order
// fixes accessibility for users using tabs to navigate the page
this.rendition.on(EVENTS.RENDITION.RENDERED, (_, view) => {
view.iframe.tabIndex = 1;
view.focus();
});
});
},
beforeDestroy() {
Expand Down