mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-12 18:47:41 +00:00
Tweaked reference to class constant.
This commit is contained in:
parent
df702dd1b1
commit
b28442ee6b
2 changed files with 2 additions and 2 deletions
|
|
@ -345,7 +345,7 @@ namespace com.keyman.osk {
|
|||
static readonly TOUCHED_CLASS: string = 'kmw-suggest-touched';
|
||||
|
||||
constructor(height?: number) {
|
||||
super(height || SuggestionBanner.DEFAULT_HEIGHT);
|
||||
super(height || Banner.DEFAULT_HEIGHT);
|
||||
|
||||
this.options = new Array();
|
||||
for (var i=0; i<SuggestionBanner.SUGGESTION_LIMIT; i++) {
|
||||
|
|
|
|||
|
|
@ -182,7 +182,7 @@ namespace com.keyman.osk {
|
|||
banner = new BlankBanner();
|
||||
break;
|
||||
case 'image':
|
||||
banner = new ImageBanner(this.imagePath, ImageBanner.DEFAULT_HEIGHT);
|
||||
banner = new ImageBanner(this.imagePath, Banner.DEFAULT_HEIGHT);
|
||||
break;
|
||||
case 'suggestion':
|
||||
banner = new SuggestionBanner(height);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue