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
00c74487
Commit
00c74487
authored
Dec 20, 2016
by
Ilya Kirillov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix last commit.
parent
69da324c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
26 deletions
+17
-26
word/Editor/Sections.js
word/Editor/Sections.js
+10
-10
word/apiDefines.js
word/apiDefines.js
+7
-16
No files found.
word/Editor/Sections.js
View file @
00c74487
...
...
@@ -53,6 +53,15 @@ var section_borders_OffsetFromText = 0x01;
var
section_borders_ZOrderBack
=
0x00
;
var
section_borders_ZOrderFront
=
0x01
;
var
section_footnote_RestartContinuous
=
0x00
;
var
section_footnote_RestartEachSect
=
0x01
;
var
section_footnote_RestartEachPage
=
0x02
;
var
section_footnote_PosBeneathText
=
0x00
;
var
section_footnote_PosDocEnd
=
0x01
;
var
section_footnote_PosPageBottom
=
0x02
;
var
section_footnote_PosSectEnd
=
0x03
;
function
CSectionPr
(
LogicDocument
)
{
this
.
Id
=
AscCommon
.
g_oIdCounter
.
Get_NewId
();
...
...
@@ -1395,13 +1404,4 @@ CFootnotePr.prototype.ReadFromBinary = function(Reader)
//--------------------------------------------------------export----------------------------------------------------
window
[
'
AscCommonWord
'
]
=
window
[
'
AscCommonWord
'
]
||
{};
window
[
'
AscCommonWord
'
].
CSectionPr
=
CSectionPr
;
window
[
'
AscCommonWord
'
][
'
section_footnote_RestartContinuous
'
]
=
section_footnote_RestartContinuous
;
window
[
'
AscCommonWord
'
][
'
section_footnote_RestartEachSect
'
]
=
section_footnote_RestartEachSect
;
window
[
'
AscCommonWord
'
][
'
section_footnote_RestartEachPage
'
]
=
section_footnote_RestartEachPage
;
window
[
'
AscCommonWord
'
][
'
section_footnote_PosBeneathText
'
]
=
section_footnote_PosBeneathText
;
window
[
'
AscCommonWord
'
][
'
section_footnote_PosDocEnd
'
]
=
section_footnote_PosDocEnd
;
window
[
'
AscCommonWord
'
][
'
section_footnote_PosPageBottom
'
]
=
section_footnote_PosPageBottom
;
window
[
'
AscCommonWord
'
][
'
section_footnote_PosSectEnd
'
]
=
section_footnote_PosSectEnd
;
\ No newline at end of file
window
[
'
AscCommonWord
'
].
CSectionPr
=
CSectionPr
;
\ No newline at end of file
word/apiDefines.js
View file @
00c74487
...
...
@@ -182,26 +182,17 @@ var c_oSerFormat = {
Signature
:
"
DOCY
"
};
var
section_footnote_RestartContinuous
=
0x00
;
var
section_footnote_RestartEachSect
=
0x01
;
var
section_footnote_RestartEachPage
=
0x02
;
var
section_footnote_PosBeneathText
=
0x00
;
var
section_footnote_PosDocEnd
=
0x01
;
var
section_footnote_PosPageBottom
=
0x02
;
var
section_footnote_PosSectEnd
=
0x03
;
var
c_oAscFootnotePos
=
{
BeneathText
:
section_footnote_PosBeneathText
,
DocEnd
:
section_footnote_PosDocEnd
,
PageBottom
:
section_footnote_PosPageBottom
,
SectEnd
:
section_footnote_PosSectEnd
BeneathText
:
0x00
,
//section_footnote_PosBeneathText
DocEnd
:
0x01
,
//section_footnote_PosDocEnd
PageBottom
:
0x02
,
//
section_footnote_PosPageBottom,
SectEnd
:
0x03
//
section_footnote_PosSectEnd
};
var
c_oAscFootnoteRestart
=
{
Continuous
:
section_footnote_RestartContinuous
,
EachSect
:
section_footnote_RestartEachSect
,
EachPage
:
section_footnote_RestartEachPage
Continuous
:
0x00
,
//
section_footnote_RestartContinuous,
EachSect
:
0x01
,
//
section_footnote_RestartEachSect,
EachPage
:
0x02
//
section_footnote_RestartEachPage
};
window
[
"
flat_desine
"
]
=
false
;
...
...
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