diff --git a/CHANGELOG.md b/CHANGELOG.md index b5569ea41..4c79598bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ ### Document Editor * Create and manage bookmarks * Create internal hyperlinks to bookmarks and headings +* Export to RTF format ### Spreadsheet Editor * Support Spanish in formulas diff --git a/apps/documenteditor/main/app/view/FileMenuPanels.js b/apps/documenteditor/main/app/view/FileMenuPanels.js index ea2750c1f..7da717107 100644 --- a/apps/documenteditor/main/app/view/FileMenuPanels.js +++ b/apps/documenteditor/main/app/view/FileMenuPanels.js @@ -58,7 +58,7 @@ define([ ],[ // {name: 'DOC', imgCls: 'doc-format btn-doc', type: Asc.c_oAscFileType.DOC}, {name: 'ODT', imgCls: 'odt', type: Asc.c_oAscFileType.ODT}, -// {name: 'RTF', imgCls: 'doc-format btn-rtf', type: Asc.c_oAscFileType.RTF}, + {name: 'RTF', imgCls: 'rtf', type: Asc.c_oAscFileType.RTF}, {name: 'HTML (Zipped)', imgCls: 'html', type: Asc.c_oAscFileType.HTML} // {name: 'EPUB', imgCls: 'doc-format btn-epub', type: Asc.c_oAscFileType.EPUB} ]],