From d99fb449f6386998b66803f5c8ce2a6129d53c7f Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Fri, 19 Jul 2024 09:46:42 +0200 Subject: [PATCH] docs: add notice of `loaded` event --- .../src/packages/templating/code-editor/code-editor.element.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Umbraco.Web.UI.Client/src/packages/templating/code-editor/code-editor.element.ts b/src/Umbraco.Web.UI.Client/src/packages/templating/code-editor/code-editor.element.ts index e7a35e4c48..6502032ebc 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/templating/code-editor/code-editor.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/templating/code-editor/code-editor.element.ts @@ -32,6 +32,7 @@ const elementName = 'umb-code-editor'; * @implements {UmbCodeEditorHost} * @fires input - Fired when the value of the editor changes. * @fires change - Fired when the entire model of editor is replaced. + * @fires loaded - Fired when the editor is loaded and ready to use. */ @customElement(elementName) export class UmbCodeEditorElement extends UmbLitElement implements UmbCodeEditorHost {