diff --git a/ios/history.md b/ios/history.md index 47ebe7ec38..f91e295765 100644 --- a/ios/history.md +++ b/ios/history.md @@ -1,7 +1,10 @@ # Keyman for iPhone and iPad Version History -## 2020-03-09 13.0.102 +## 2020-03-17 13.0.105 stable +* Fixes issues with keyboard banner display (#2841) + +## 2020-03-09 13.0.102 stable * Pre-emptively fixes issue with keyboard scaling for as-of-yet unreleased devices (#2704) * Fixes in-app Info help link (#2774) * Fixes issue with select keyboard rules causing loss of context when removing context up to a newline (#2776) diff --git a/web/history.md b/web/history.md index 1aabe9b1a8..82335aa86d 100644 --- a/web/history.md +++ b/web/history.md @@ -1,5 +1,9 @@ # KeymanWeb Version History +## 2020-03-18 13.0.105 stable +* Fixes issue in OSK layer resizing that affected iOS app (#2841) +* Fixes issue with text output to content-editable elements and design-mode iframes (#2839) + ## 2020-03-13 13.0.104 stable * Bug fix: further updates BuildVisualKeyboard (#2823) * Bug fix: fixes word lookup for wordlist models for languages in the SMP Unicode planes (#2821) diff --git a/web/source/osk/banner.ts b/web/source/osk/banner.ts index 97b6fa87f8..4a7b6e7605 100644 --- a/web/source/osk/banner.ts +++ b/web/source/osk/banner.ts @@ -352,10 +352,13 @@ namespace com.keyman.osk { private manager: SuggestionManager; static readonly TOUCHED_CLASS: string = 'kmw-suggest-touched'; + static readonly BANNER_CLASS: string = 'kmw-suggest-banner'; constructor(height?: number) { super(height || Banner.DEFAULT_HEIGHT); + this.getDiv().className = this.getDiv().className + ' ' + SuggestionBanner.BANNER_CLASS; + this.options = new Array(); for (var i=0; i