diff --git a/CHANGELOG.md b/CHANGELOG.md index b109fa5a0..d71263e2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Change Log - docs api: the editorConfig.customization.compactToolbar parameter is now available for the viewer +- docs api: added the editorConfig.customization.pointerMode parameter - docs api: updated the WOPI section - docs api: added the information about calling editor methods in the frameworks - docs api: added the Checking PDF forms page diff --git a/site/assets/images/editor/pointerMode.png b/site/assets/images/editor/pointerMode.png new file mode 100644 index 000000000..396adcfce Binary files /dev/null and b/site/assets/images/editor/pointerMode.png differ diff --git a/site/pages/Docs/Docs API/More Information/Changelog/index.md b/site/pages/Docs/Docs API/More Information/Changelog/index.md index 02e4df839..d2b0a146d 100644 --- a/site/pages/Docs/Docs API/More Information/Changelog/index.md +++ b/site/pages/Docs/Docs API/More Information/Changelog/index.md @@ -4,6 +4,8 @@ The list of changes of ONLYOFFICE Docs API. - The [editorConfig.customization.compactToolbar](../../Usage%20API/Config/Editor/Customization/index.md#compacttoolbar) parameter is now available for the viewer. +- Added the [editorConfig.customization.pointerMode](../../Usage%20API/Config/Editor/Customization/index.md#pointermode) parameter. + ## Version 8.2 - The [editorConfig.customization.mobileForceView](../../Usage%20API/Config/Editor/Customization/index.md#mobileforceview) parameter is deprecated, please use the [editorConfig.customization.mobile](../../Usage%20API/Config/Editor/Customization/index.md#mobile) parameter instead. diff --git a/site/pages/Docs/Docs API/Usage API/Advanced parameters/index.md b/site/pages/Docs/Docs API/Usage API/Advanced parameters/index.md index 386149151..5fd3a7b09 100644 --- a/site/pages/Docs/Docs API/Usage API/Advanced parameters/index.md +++ b/site/pages/Docs/Docs API/Usage API/Advanced parameters/index.md @@ -198,6 +198,7 @@ const config = { standardView: false, }, plugins: true, + pointerMode: "select", review: { hideReviewDisplay: false, showReviewChanges: false, diff --git a/site/pages/Docs/Docs API/Usage API/Config/Editor/Customization/index.md b/site/pages/Docs/Docs API/Usage API/Config/Editor/Customization/index.md index 5652c265b..3936a0ca6 100644 --- a/site/pages/Docs/Docs API/Usage API/Config/Editor/Customization/index.md +++ b/site/pages/Docs/Docs API/Usage API/Config/Editor/Customization/index.md @@ -31,6 +31,7 @@ The customization section allows to customize the editor interface so that it lo - [mentionShare](#mentionshare) - [mobile](#mobile) - [plugins](#plugins) +- [pointerMode](#pointermode) - [review](#review) - [reviewDisplay](#reviewdisplay) - [rightMenu](#rightmenu) @@ -1157,6 +1158,16 @@ Type: boolean Example: true +## pointerMode + +Defines the pointer mode (**select** or **hand**) when the presentation editor is loaded in the viewer. The default value is **select**. + +Type: string + +Example: "select" + +![Pointer mode](/assets/images/editor/pointerMode.png) + ## review Contains the information about the review mode. @@ -1512,6 +1523,7 @@ const docEditor = new DocsAPI.DocEditor("placeholder", { standardView: false, }, plugins: true, + pointerMode: "select", review: { hideReviewDisplay: false, showReviewChanges: false,