mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 16:35:33 +00:00
Note: build.sh updated to make sure that test:help build action:target doesn't also call test.sh by adding `:_all` meta-target. Note: CI will need a new help-keyman-com.sh build step to deploy web engine help. Fixes: #12347
884 B
884 B
| title |
|---|
| keyman.initialized |
Summary
Keymanweb core module initialization state flag.
Syntax
keyman.initialized
Type
Integer
Access
Read only
Return Value
0, if Keyman Engine for Web is not initialized1, if Keyman Engine for Web has started initialization2, if Keyman Engine for Web is completely initialized
Description
The keyman.init() function is used to initialize Keyman. You can check
this flag to see what the current initialization status is. You should not call
functions other than keyman.init() until Keyman initialization is complete. As
keyman.init() returns a Promise, the Promise fulfilment callback is the
appropriate place to perform post-init steps.
History
- 2.0: Keyman Engine for Web supports values
0,1, or2. - 16.0: Documentation updated to match implementation.