From 2fbe4f60b54b10961b9a1e769a6c82b42ee6000d Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 4 Apr 2018 12:13:47 +0300 Subject: [PATCH] [DE] Fix Bug 37405 --- CHANGELOG.md | 1 + apps/documenteditor/main/app/view/FileMenuPanels.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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} ]],