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
377a3e4c
Commit
377a3e4c
authored
Aug 28, 2017
by
SergeyLuzyanin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
b_save_format
parent
cbab75dc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
cell/api.js
cell/api.js
+2
-2
common/apiBase.js
common/apiBase.js
+1
-1
No files found.
cell/api.js
View file @
377a3e4c
...
...
@@ -433,9 +433,9 @@ var editor;
return
AscCommon
.
g_clipboardBase
.
Button_Cut
();
};
spreadsheet_api
.
prototype
.
asc_PasteData
=
function
(
_format
,
data1
,
data2
,
text_data
)
{
spreadsheet_api
.
prototype
.
asc_PasteData
=
function
(
_format
,
data1
,
data2
,
text_data
,
b_save_format
)
{
if
(
!
this
.
getViewMode
())
{
this
.
wb
.
pasteData
(
_format
,
data1
,
data2
,
text_data
);
this
.
wb
.
pasteData
(
_format
,
data1
,
data2
,
text_data
,
b_save_format
);
}
};
...
...
common/apiBase.js
View file @
377a3e4c
...
...
@@ -1290,7 +1290,7 @@
_elem
.
innerHTML
=
htmlText
;
document
.
body
.
appendChild
(
_elem
);
this
.
incrementCounterLongAction
();
this
.
asc_PasteData
(
AscCommon
.
c_oAscClipboardDataFormat
.
HtmlElement
,
_elem
);
this
.
asc_PasteData
(
AscCommon
.
c_oAscClipboardDataFormat
.
HtmlElement
,
_elem
,
undefined
,
undefined
,
true
);
this
.
decrementCounterLongAction
();
if
(
true
)
...
...
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