tinymce-angular icon indicating copy to clipboard operation
tinymce-angular copied to clipboard

Official TinyMCE Angular Component

Results 58 tinymce-angular issues
Sort by recently updated
recently updated
newest added

the below function was working fine function (blobInfo, success, failure) { const xhr = new XMLHttpRequest(); xhr.open('POST', `${environment.SITE_BASE_URL}filemanager/filemanager/upload.php`); xhr.onload = function () { if (xhr.status !== 200) { failure('HTTP Error:...

**What is the current behavior?** TinyMCE fails to initialize in Firefox with the following error: `Uncaught (in promise) TypeError: t is undefined ` On Chrome there's no such issue for...

Create binding via reactive forms, set `updateOn: blur`. ``` formGroup = new FormGroup({ control: new FormControl('text', { updateOn: 'blur' }), }, { updateOn: 'blur' } ); ``` Focusing & blurring...

Bumps [nanoid](https://github.com/ai/nanoid) from 3.3.7 to 3.3.8. Changelog Sourced from nanoid's changelog. 3.3.8 Fixed a way to break Nano ID by passing non-integer size (by @​myndzi). Commits 3044cd5 Release 3.3.8 version...

dependencies
javascript

Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. Release notes Sourced from actions/checkout's releases. v4.0.0 What's Changed Update default runtime to node20 by @​takost in actions/checkout#1436 Support fetching without the --progress option...

dependencies
status:stale
github_actions

**Updating content externally or using DynamicFormControlComponent to update the value causes the cursor to jump to the start of the rich text editor. This issue also happens if there is...

https://github.com/tinymce/tinymce-angular/issues/425 since tinyMCE does the updating the line " this._editor.setContent(isNullOrUndefined(value) ? '' : value);" is not needed and only needed for initialization. prove it works https://github.com/user-attachments/assets/cd78be8a-f78d-4536-9241-0384e07e14f1

## Bug Description When using TinyMCE with Angular, repeatedly copy-pasting text segments with white background color results in excessive nested `` tags being generated in the editor content. ## Steps...