Commit 86573923 authored by Sergey Luzyanin's avatar Sergey Luzyanin Committed by GitHub

Merge pull request #50 from ONLYOFFICE/release/v4.1.0

fix Bug 33022
parents fa5a3462 a10aca4d
......@@ -3160,7 +3160,11 @@ CPresentation.prototype =
// Возвращаем выделенный текст, если в выделении не более 1 параграфа, и там нет картинок, нумерации страниц и т.д.
Get_SelectedText : function(bClearText)
{
return this.Slides[this.CurPage].graphicObjects.Get_SelectedText(bClearText);
if(this.Slides[this.CurPage]){
return this.Slides[this.CurPage].graphicObjects.Get_SelectedText(bClearText);
}
return "";
},
//-----------------------------------------------------------------------------------
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment