Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(web): fix paths to several help pages #12491

Merged
merged 1 commit into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion web/src/app/browser/src/contextManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ export default class ContextManager extends ContextManagerBase<BrowserConfigurat
* context.
*
* This is the core method that backs
* https://help.keyman.com/DEVELOPER/ENGINE/WEB/15.0/reference/core/setKeyboardForControl.
* https://help.keyman.com/developer/engine/web/15.0/reference/core/setKeyboardForControl.
* @param target
* @param metadata
*/
Expand Down
4 changes: 2 additions & 2 deletions web/src/app/browser/src/keymanEngine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ export default class KeymanEngine extends KeymanEngineBase<BrowserConfiguration,
* activationPending (bool): KMW being activated
* activated (bool): KMW active
*
* See https://help.keyman.com/DEVELOPER/ENGINE/WEB/16.0/reference/core/getUIState
* See https://help.keyman.com/developer/engine/web/16.0/reference/core/getUIState
*/
public getUIState(): FocusStateAPIObject {
return this.contextManager.focusAssistant.getUIState();
Expand All @@ -257,7 +257,7 @@ export default class KeymanEngine extends KeymanEngineBase<BrowserConfiguration,
/**
* Set or clear the IsActivatingKeymanWebUI flag (exposed function)
*
* See https://help.keyman.com/DEVELOPER/ENGINE/WEB/16.0/reference/core/activatingUI
* See https://help.keyman.com/developer/engine/web/16.0/reference/core/activatingUI
*
* @param {(boolean|number)} state Activate (true,false)
*/
Expand Down
4 changes: 2 additions & 2 deletions web/src/engine/keyboard/src/keyboards/keyboardProperties.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export type LanguageAPIPropertySpec = {
* Corresponds to the documented API for the Web engine's `addKeyboards` function
* when a single language object is specified - not an array.
*
* See https://help.keyman.com/DEVELOPER/ENGINE/WEB/15.0/reference/core/addKeyboards,
* See https://help.keyman.com/developer/engine/web/15.0/reference/core/addKeyboards,
* "Using an `object`".
*/
export type KeyboardAPIPropertySpec = {
Expand All @@ -93,7 +93,7 @@ export type KeyboardAPIPropertySpec = {
* Corresponds to the documented API for the Web engine's `addKeyboards` function
* when a language array is specified for the object.
*
* See https://help.keyman.com/DEVELOPER/ENGINE/WEB/15.0/reference/core/addKeyboards,
* See https://help.keyman.com/developer/engine/web/15.0/reference/core/addKeyboards,
* "Using an `object`".
*/
export type KeyboardAPIPropertyMultilangSpec = {
Expand Down
2 changes: 1 addition & 1 deletion web/src/engine/main/src/keyboardInterface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export default class KeyboardInterface<ContextManagerType extends ContextManager
// Keyman Developer may also use this method directly for its test-host page.
//
// It may also be used by documented legacy API:
// https://help.keyman.com/DEVELOPER/ENGINE/WEB/2.0/guide/examples/manual-control
// https://help.keyman.com/developer/engine/web/2.0/guide/examples/manual-control
// (See: referenced laokeys_load.js)
//
// The mobile apps typically have fully-preconfigured paths, but Developer's
Expand Down
2 changes: 1 addition & 1 deletion web/src/engine/osk/src/views/oskView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export type OSKRect = {

/**
* Definition for OSK events documented at
* https://help.keyman.com/DEVELOPER/ENGINE/WEB/16.0/reference/events/.
* https://help.keyman.com/developer/engine/web/16.0/reference/events/.
*/
export interface LegacyOSKEventMap {
'configclick'(obj: {}): void;
Expand Down
Loading