mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-22 08:17:40 +00:00
30 lines
444 B
Markdown
30 lines
444 B
Markdown
---
|
|
title: keyman.loaduserinterface Event
|
|
---
|
|
|
|
## Summary
|
|
|
|
Called to initiate the ui initialization process.
|
|
|
|
## Syntax
|
|
|
|
```javascript
|
|
keyman.addEventListener('loaduserinterface', function() {
|
|
...
|
|
});
|
|
```
|
|
|
|
### Parameters
|
|
|
|
None.
|
|
|
|
### Return Value
|
|
|
|
`boolean`
|
|
: `true` if the event should continue processing, `false` if it should
|
|
not. Your event handler should return `true` aside from exceptional
|
|
circumstances.
|
|
|
|
## Description
|
|
|
|
...
|