mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
17 lines
470 B
Markdown
17 lines
470 B
Markdown
|
|
||
|
|
||
|
### 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();
|
||
|
```
|