mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 00:13:35 +01:00
"fixed error if FCKeditorAPI was not loaded (no FCK on the page), which cause the selected tab no longer be returned to the app"
This commit is contained in:
parent
defef645e2
commit
8c71320f44
@ -72,16 +72,19 @@ function activate_tab(tab,all_tabs,name)
|
||||
// activate FCK in newly activated tab for Gecko browsers
|
||||
if (!document.all)
|
||||
{
|
||||
var t = document.getElementById(tab);
|
||||
var inputs = t.getElementsByTagName('input');
|
||||
for (i = 0; i < inputs.length;i++) {
|
||||
editor = FCKeditorAPI.GetInstance(inputs[i].name);
|
||||
if (editor && editor.EditorDocument && editor.EditMode == FCK_EDITMODE_WYSIWYG) {
|
||||
editor.SwitchEditMode();
|
||||
editor.SwitchEditMode();
|
||||
break;
|
||||
}
|
||||
try {
|
||||
var t = document.getElementById(tab);
|
||||
var inputs = t.getElementsByTagName('input');
|
||||
for (i = 0; i < inputs.length;i++) {
|
||||
editor = FCKeditorAPI.GetInstance(inputs[i].name);
|
||||
if (editor && editor.EditorDocument && editor.EditMode == FCK_EDITMODE_WYSIWYG) {
|
||||
editor.SwitchEditMode();
|
||||
editor.SwitchEditMode();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
catch(e) { } // ignore the error if FCKeditorAPI is not loaded
|
||||
}
|
||||
if (name) {
|
||||
set_element(document.eTemplate,name,tab);
|
||||
|
Loading…
Reference in New Issue
Block a user