Skip to content

Commit

Permalink
Merge remote-tracking branch 'remotes/origin/feature/editor-8.3.0' in…
Browse files Browse the repository at this point in the history
…to feature/update-compact-toolbar

# Conflicts:
#	CHANGELOG.md
#	site/pages/Docs/Docs API/More Information/Changelog/index.md
  • Loading branch information
LinneyS committed Dec 18, 2024
2 parents 7c223a7 + 2fa6e75 commit 91f2b2a
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Binary file added site/assets/images/editor/pointerMode.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions site/pages/Docs/Docs API/More Information/Changelog/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ const config = {
standardView: false,
},
plugins: true,
pointerMode: "select",
review: {
hideReviewDisplay: false,
showReviewChanges: false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -1512,6 +1523,7 @@ const docEditor = new DocsAPI.DocEditor("placeholder", {
standardView: false,
},
plugins: true,
pointerMode: "select",
review: {
hideReviewDisplay: false,
showReviewChanges: false,
Expand Down

0 comments on commit 91f2b2a

Please sign in to comment.