mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 08:25:32 +00:00
17 lines
No EOL
496 B
TypeScript
17 lines
No EOL
496 B
TypeScript
/// <reference path="keyboardView.interface.ts" />
|
|
|
|
namespace com.keyman.osk {
|
|
export class EmptyView implements KeyboardView {
|
|
readonly element: HTMLDivElement;
|
|
|
|
constructor() {
|
|
let Ldiv = this.element = document.createElement('div');
|
|
Ldiv.style.userSelect = 'none';
|
|
Ldiv.className='kmw-osk-none';
|
|
}
|
|
|
|
// No operations needed; this is a stand-in for the desktop OSK when no keyboard is active.
|
|
public postInsert() { }
|
|
public updateState() { }
|
|
}
|
|
} |