Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions public/libs/tinymce/custom-changes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@


### Srcdoc usage

By default, as of tiny 6, the editor would use srcdoc which prevents cookies being sent with images in Firefox as
it's considered cross origin. This removes that usage to work around this case:

[Relevant TinyMCE issue](https://github.com/tinymce/tinymce/issues/7746).

Source code change applied:

```javascript
// Find:
t.srcdoc=e.iframeHTML
// Replace:
t.contentDocument.open();t.contentDocument.write(e.iframeHTML);t.contentDocument.close();
```
2 changes: 1 addition & 1 deletion public/libs/tinymce/icons/default/icons.min.js

Large diffs are not rendered by default.

525 changes: 21 additions & 504 deletions public/libs/tinymce/license.txt

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions public/libs/tinymce/models/dom/model.min.js

Large diffs are not rendered by default.

9 changes: 2 additions & 7 deletions public/libs/tinymce/plugins/advlist/plugin.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 2 additions & 7 deletions public/libs/tinymce/plugins/anchor/plugin.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 2 additions & 7 deletions public/libs/tinymce/plugins/autolink/plugin.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading