Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sdkjs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
sdkjs
Commits
372d188e
Commit
372d188e
authored
Oct 12, 2016
by
Ilya Kirillov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed bug #32996 Fixed an issue with adding a hyperlink inside a field.
parent
a758ba09
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
27 additions
and
2 deletions
+27
-2
word/Editor/Comments.js
word/Editor/Comments.js
+4
-0
word/Editor/Field.js
word/Editor/Field.js
+4
-0
word/Editor/Paragraph.js
word/Editor/Paragraph.js
+10
-1
word/Editor/ParagraphContentBase.js
word/Editor/ParagraphContentBase.js
+9
-1
No files found.
word/Editor/Comments.js
View file @
372d188e
...
...
@@ -1471,6 +1471,10 @@ ParaComment.prototype.Get_TextPr = function(ContentPos, Depth)
{
return
new
CTextPr
();
};
ParaComment
.
prototype
.
CanSplit
=
function
()
{
return
false
;
};
//----------------------------------------------------------------------------------------------------------------------
// Разное
//----------------------------------------------------------------------------------------------------------------------
...
...
word/Editor/Field.js
View file @
372d188e
...
...
@@ -209,6 +209,10 @@ ParaField.prototype.Split = function (ContentPos, Depth)
// Не даем разделять поле
return
null
;
};
ParaField
.
prototype
.
CanSplit
=
function
()
{
return
false
;
};
ParaField
.
prototype
.
Recalculate_Range_Spaces
=
function
(
PRSA
,
_CurLine
,
_CurRange
,
_CurPage
)
{
var
CurLine
=
_CurLine
-
this
.
StartLine
;
...
...
word/Editor/Paragraph.js
View file @
372d188e
...
...
@@ -6002,6 +6002,8 @@ Paragraph.prototype =
// Если у нас в выделение попадает начало или конец гиперссылки, или конец параграфа, или
// у нас все выделение находится внутри гиперссылки, тогда мы не можем добавить новую. Во
// всех остальных случаях разрешаем добавить.
// Также, если начало или конец выделения попадает в элемент, который нельзя разделить, тогда мы тоже
// запрещаем добавление гиперссылки.
var
StartPos
=
this
.
Selection
.
StartPos
;
var
EndPos
=
this
.
Selection
.
EndPos
;
...
...
@@ -6011,8 +6013,10 @@ Paragraph.prototype =
EndPos
=
this
.
Selection
.
StartPos
;
}
// Проверяем не находимся ли мы внутри гиперссылки
if
(
false
===
this
.
Content
[
StartPos
].
CanSplit
()
||
false
===
this
.
Content
[
EndPos
].
CanSplit
())
return
false
;
// Проверяем не находимся ли мы внутри гиперссылки
for
(
var
CurPos
=
StartPos
;
CurPos
<=
EndPos
;
CurPos
++
)
{
var
Element
=
this
.
Content
[
CurPos
];
...
...
@@ -6038,6 +6042,8 @@ Paragraph.prototype =
{
// Если у нас в выделение попадает несколько гиперссылок или конец параграфа, тогда
// возвращаем false, во всех остальных случаях true
// Также, если начало или конец выделения попадает в элемент, который нельзя разделить, тогда мы тоже
// запрещаем добавление гиперссылки.
var
StartPos
=
this
.
Selection
.
StartPos
;
var
EndPos
=
this
.
Selection
.
EndPos
;
...
...
@@ -6047,6 +6053,9 @@ Paragraph.prototype =
EndPos
=
this
.
Selection
.
StartPos
;
}
if
(
false
===
this
.
Content
[
StartPos
].
CanSplit
()
||
false
===
this
.
Content
[
EndPos
].
CanSplit
())
return
false
;
var
bHyper
=
false
;
for
(
var
CurPos
=
StartPos
;
CurPos
<=
EndPos
;
CurPos
++
)
...
...
word/Editor/ParagraphContentBase.js
View file @
372d188e
...
...
@@ -34,6 +34,10 @@
function
CParagraphContentBase
()
{
}
CParagraphContentBase
.
prototype
.
CanSplit
=
function
()
{
return
false
;
};
/**
* Это базовый класс для элементов содержимого(контент) параграфа, у которых есть свое содержимое.
...
...
@@ -195,6 +199,10 @@ CParagraphContentWithContentBase.prototype.private_UpdateTrackRevisions = functi
RevisionsManager
.
Check_Paragraph
(
this
.
Paragraph
);
}
};
CParagraphContentWithContentBase
.
prototype
.
CanSplit
=
function
()
{
return
true
;
};
/**
* Это базовый класс для элементов параграфа, которые сами по себе могут содержать элементы параграфа.
* @constructor
...
...
@@ -1092,7 +1100,7 @@ CParagraphContentWithParagraphLikeContent.prototype.Document_UpdateInterfaceStat
Element
.
Document_UpdateInterfaceState
();
}
};
CParagraphContentWithParagraphLikeContent
.
prototype
.
Split
=
function
(
ContentPos
,
Depth
)
CParagraphContentWithParagraphLikeContent
.
prototype
.
Split
=
function
(
ContentPos
,
Depth
)
{
var
Element
=
new
this
.
constructor
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment