Skip to content

Commit

Permalink
fix(web): content-editable attachment issue post-rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
jahorton committed Sep 29, 2022
1 parent b126176 commit 897d3d7
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions web/source/dom/domEventHandlers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,6 @@ namespace com.keyman.dom {
if(!(et == 'text' || et == 'search')) {
return true;
}
} else if(Ltarg.ownerDocument && Ltarg.ownerDocument.designMode == 'on') {
// continue; don't block this one!
} else if((device.touchable || !Ltarg.isContentEditable)
&& !(Ltarg.ownerDocument && Ltarg instanceof Ltarg.ownerDocument.defaultView.HTMLTextAreaElement)) {
return true;
}

// We condition on 'priorElement' below as a check to allow KMW to set a default active keyboard.
Expand Down

0 comments on commit 897d3d7

Please sign in to comment.