work arounde broken linker in tinymce in safari
This commit is contained in:
parent
dfd3d7eafd
commit
e5876cf59b
2 changed files with 5 additions and 1 deletions
|
|
@ -19,6 +19,7 @@
|
|||
- fix: Doesn't copy LDAP link to user on create, also wrong search base
|
||||
- fix: Unable to view running workflows if spectre not running
|
||||
- protect Wiki pages from malformed html content
|
||||
- work around broken linking function in tinyMCE on Safari
|
||||
|
||||
7.4.8
|
||||
- fix: Syndicated Content doesn't display all items with multiple feeds in interleaved mode
|
||||
|
|
|
|||
|
|
@ -8,7 +8,10 @@ if (url != null) {
|
|||
}
|
||||
|
||||
function init() {
|
||||
tinyMCEPopup.resizeToInnerSize();
|
||||
// Nasty Hack
|
||||
if (!tinyMCE.isSafari) {
|
||||
tinyMCEPopup.resizeToInnerSize();
|
||||
}
|
||||
|
||||
document.getElementById('hrefbrowsercontainer').innerHTML = getBrowserHTML('hrefbrowser','href','file','theme_advanced_link');
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue