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
dbf4ba92
Commit
dbf4ba92
authored
May 24, 2016
by
Alexander.Trofimov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add 'Api' variable to use in builder
parent
426fe3d1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
12 deletions
+17
-12
common/Native/native.js
common/Native/native.js
+17
-12
No files found.
common/Native/native.js
View file @
dbf4ba92
...
...
@@ -259,15 +259,15 @@ document.createComment = function() { return undefined; };
document
.
documentElement
=
_null_object
;
document
.
body
=
_null_object
;
var
native
;
if
(
typeof
NativeEngine
===
"
undefined
"
)
{
native
=
CreateNativeEngine
();
}
else
{
native
=
NativeEngine
;
var
native
;
if
(
typeof
NativeEngine
===
"
undefined
"
)
{
native
=
CreateNativeEngine
();
}
else
{
native
=
NativeEngine
;
}
window
.
native
=
native
;
...
...
@@ -279,6 +279,7 @@ function GetNativeEngine()
}
var
native_renderer
=
null
;
var
Api
=
null
;
var
_api
=
null
;
function
NativeOpenFileData
(
data
,
version
)
...
...
@@ -295,6 +296,7 @@ function NativeOpenFileData(data, version)
_api
=
new
window
[
"
Asc
"
][
"
spreadsheet_api
"
]({});
_api
.
asc_nativeOpenFile
(
data
,
version
);
}
Api
=
_api
;
}
function
NativeOpenFile
()
...
...
@@ -304,7 +306,7 @@ function NativeOpenFile()
if
(
window
.
NATIVE_DOCUMENT_TYPE
==
"
presentation
"
||
window
.
NATIVE_DOCUMENT_TYPE
==
"
document
"
)
{
_api
=
new
window
[
"
Asc
"
][
"
asc_docs_api
"
](
""
);
_api
=
new
window
[
"
Asc
"
][
"
asc_docs_api
"
](
""
);
_api
.
asc_nativeOpenFile
(
doc_bin
);
}
else
...
...
@@ -312,6 +314,7 @@ function NativeOpenFile()
_api
=
new
window
[
"
Asc
"
][
"
spreadsheet_api
"
]();
_api
.
asc_nativeOpenFile
(
doc_bin
);
}
Api
=
_api
;
}
function
NativeOpenFile2
(
_params
)
...
...
@@ -338,8 +341,10 @@ function NativeOpenFile2(_params)
else
{
_api
=
new
window
[
"
Asc
"
][
"
spreadsheet_api
"
]();
_api
.
asc_nativeOpenFile
(
doc_bin
);
_api
.
asc_nativeOpenFile
(
doc_bin
);
}
Api
=
_api
;
}
function
NativeCalculateFile
()
...
...
@@ -355,7 +360,7 @@ function NativeApplyChangesData(data, isFull)
}
else
{
_api
.
asc_nativeApplyChanges2
(
data
,
isFull
);
_api
.
asc_nativeApplyChanges2
(
data
,
isFull
);
}
}
...
...
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