Commit 995b5960 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Исправлен баг с тем, что при добавлении гиперссылки она сразу не зполнялась полями (баг 23932).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@55981 954022d7-b5bf-4e40-9824-e11837661b57
parent 5dc8d108
......@@ -12101,6 +12101,13 @@ Paragraph.prototype =
// Создаем гиперссылку
var Hyperlink = new ParaHyperlink();
// Заполняем гиперссылку полями
if ( undefined != HyperProps.Value && null != HyperProps.Value )
Hyperlink.Set_Value( HyperProps.Value );
if ( undefined != HyperProps.ToolTip && null != HyperProps.ToolTip )
Hyperlink.Set_ToolTip( HyperProps.ToolTip );
// Разделяем содержимое по меткам селекта
var StartContentPos = this.Get_ParaContentPos(true, true);
var EndContentPos = this.Get_ParaContentPos(true, false);
......@@ -12159,6 +12166,13 @@ Paragraph.prototype =
// Создаем гиперссылку
var Hyperlink = new ParaHyperlink();
// Заполняем гиперссылку полями
if ( undefined != HyperProps.Value && null != HyperProps.Value )
Hyperlink.Set_Value( HyperProps.Value );
if ( undefined != HyperProps.ToolTip && null != HyperProps.ToolTip )
Hyperlink.Set_ToolTip( HyperProps.ToolTip );
// Создаем текстовый ран в гиперссылке
var HyperRun = new ParaRun(this);
......
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