work arounde broken linker in tinymce in safari

This commit is contained in:
Graham Knop 2007-10-10 17:52:47 +00:00
parent dfd3d7eafd
commit e5876cf59b
2 changed files with 5 additions and 1 deletions

View file

@ -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

View file

@ -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');