Skip to content

Commit

Permalink
Fixed issue #7312: Cannot switch between email template tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Mar 7, 2013
1 parent 84cdb00 commit c39de35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/admin/emailtemplates.js
Expand Up @@ -22,7 +22,7 @@ function loadHTMLEditor(event, ui)
}
if ($(sSelector+' iframe').size()==0)
{
sCKEditorInstanceName='oFCKeditor_'+$(sSelector+' textarea').attr('id').replace(/-/i, "_");
sCKEditorInstanceName='oFCKeditor_'+$(sSelector+' textarea').attr('id').replace(/-/g, "_");
eval("if (typeof "+sCKEditorInstanceName+" != 'undefined')"+sCKEditorInstanceName+".ReplaceTextarea();");
}
}
Expand Down

0 comments on commit c39de35

Please sign in to comment.