Skip to content

Commit

Permalink
Fix EPUB not getting keyboard focus on tab open
Browse files Browse the repository at this point in the history
(Why this happens remains a mystery, but focusing the outer window first seems
 to fix it.)

Fixes zotero/zotero#3325
  • Loading branch information
AbeJellinek committed Aug 16, 2023
1 parent e4850b5 commit c4c0dfd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/dom/common/dom-view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -948,6 +948,8 @@ abstract class DOMView<State extends DOMViewState, Data> {
// ***

focus() {
// The iframe sometimes won't correctly get focus unless we focus the outer window first
window.focus();
this._iframe.focus();
}

Expand Down

0 comments on commit c4c0dfd

Please sign in to comment.