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
d2b96586
Commit
d2b96586
authored
7 years ago
by
Ilya Kirillov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed bug #34341
parent
27ea599c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
word/Editor/Paragraph.js
word/Editor/Paragraph.js
+1
-1
word/Editor/Run.js
word/Editor/Run.js
+1
-1
No files found.
word/Editor/Paragraph.js
View file @
d2b96586
...
...
@@ -12147,7 +12147,7 @@ Paragraph.prototype.GotoFootnoteRef = function(isNext, isCurrent)
{
for
(
var
nIndex
=
nPos
;
nIndex
>=
0
;
--
nIndex
)
{
var
nRes
=
this
.
Content
[
nIndex
].
GotoFootnoteRef
?
this
.
Content
[
nIndex
].
GotoFootnoteRef
(
tru
e
,
true
===
isCurrent
&&
nPos
===
nIndex
,
isStepOver
)
:
0
;
var
nRes
=
this
.
Content
[
nIndex
].
GotoFootnoteRef
?
this
.
Content
[
nIndex
].
GotoFootnoteRef
(
fals
e
,
true
===
isCurrent
&&
nPos
===
nIndex
,
isStepOver
)
:
0
;
if
(
nRes
>
0
)
isStepOver
=
true
;
...
...
This diff is collapsed.
Click to expand it.
word/Editor/Run.js
View file @
d2b96586
...
...
@@ -9106,7 +9106,7 @@ ParaRun.prototype.GotoFootnoteRef = function(isNext, isCurrent, isStepOver)
}
else
{
for
(
var
nIndex
=
nPos
;
nIndex
>=
0
;
--
nIndex
)
for
(
var
nIndex
=
Math
.
min
(
nPos
,
this
.
Content
.
length
-
1
)
;
nIndex
>=
0
;
--
nIndex
)
{
if
(
para_FootnoteReference
===
this
.
Content
[
nIndex
].
Type
&&
((
true
!==
isCurrent
&&
true
===
isStepOver
)
||
(
true
===
isCurrent
&&
(
true
===
this
.
Selection
.
Use
||
nPos
!==
nIndex
))))
{
...
...
This diff is collapsed.
Click to expand it.
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