From 38fe804f8dd66a3c52f93fb81362d71a3688a824 Mon Sep 17 00:00:00 2001 From: Karl Kemister-Sheppard Date: Wed, 6 Mar 2024 13:04:10 +1000 Subject: [PATCH] Update modules/ROOT/examples/live-demos/comments-embedded/index.js Co-authored-by: Mitchell Crompton --- modules/ROOT/examples/live-demos/comments-embedded/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/examples/live-demos/comments-embedded/index.js b/modules/ROOT/examples/live-demos/comments-embedded/index.js index 255813a06f..7002de76cb 100644 --- a/modules/ROOT/examples/live-demos/comments-embedded/index.js +++ b/modules/ROOT/examples/live-demos/comments-embedded/index.js @@ -25,7 +25,7 @@ tinymce.init({ /* The following setup callback opens the comments sidebar when the editor loads */ setup: (editor) => { editor.on('SkinLoaded', () => { - editor.execCommand('ToggleSidebar', false, 'showcomments', { skipFocus: true }); + editor.execCommand('ToggleSidebar', false, 'showcomments'); }); } });