Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kityminder-core
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
吴志俊
kityminder-core
Commits
414cd3b7
Commit
414cd3b7
authored
Apr 15, 2014
by
Akikonata
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test
parent
01b7ad02
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
10 deletions
+22
-10
saveto.js
src/adapter/saveto.js
+22
-10
No files found.
src/adapter/saveto.js
View file @
414cd3b7
...
...
@@ -55,27 +55,39 @@ KM.registerToolbarUI( 'saveto', function ( name ) {
return
iev
;
};
var
doSave
=
function
(
d
,
filename
)
{
var
winname
=
window
.
open
(
''
,
'_blank'
,
'height=0,width=0,toolbar=no,menubar=no,scrollbars=no,resizable=on,location=no,status=no'
);
//var winname = window.open( '', '_blank', 'height=0,width=0,toolbar=no,menubar=no,scrollbars=no,resizable=on,location=no,status=no' );
var
winname
=
window
.
open
(
''
,
'_blank'
);
winname
.
document
.
open
(
'text/html'
,
'replace'
);
winname
.
document
.
writeln
(
d
);
winname
.
document
.
execCommand
(
'saveas'
,
''
,
filename
);
winname
.
close
();
//
winname.document.execCommand( 'saveas', '', filename );
//
winname.close();
};
function
downloadFile
(
fileName
,
content
)
{
var
aLink
=
document
.
createElement
(
'a'
);
var
blob
=
new
Blob
(
[
content
]
);
var
evt
=
document
.
createEvent
(
"HTMLEvents"
);
evt
.
initEvent
(
"click"
,
false
,
false
);
//initEvent 不加后两个参数在FF下会报错, 感谢 Barret Lee 的反馈
aLink
.
download
=
fileName
;
aLink
.
href
=
URL
.
createObjectURL
(
blob
);
aLink
.
dispatchEvent
(
evt
);
}
comboboxWidget
.
on
(
'comboboxselect'
,
function
(
evt
,
res
)
{
var
data
=
me
.
exportData
(
res
.
value
);
var
p
=
KityMinder
.
findProtocal
(
res
.
value
);
var
filename
=
me
.
getMinderTitle
()
+
p
.
fileExtension
;
if
(
typeof
(
data
)
==
'string'
)
{
var
url
=
'data:text/plain; utf-8,'
+
encodeURIComponent
(
data
);
if
(
ie_ver
()
>
0
)
{
doSave
(
data
,
filename
);
}
else
{
doDownload
(
url
,
filename
);
}
// var url = 'data:text/plain; utf-8,' + encodeURIComponent( data );
// //if ( ie_ver() > 0 ) {
// doSave( data, filename );
// //} else {
// //doDownload( url, filename );
// //}
downloadFile
(
filename
,
data
);
}
else
if
(
data
&&
data
.
then
)
{
data
.
then
(
function
(
url
)
{
if
(
ie_ver
()
>
0
)
{
doSave
(
data
,
filename
);
doSave
(
url
,
filename
);
}
else
{
doDownload
(
url
,
filename
);
}
...
...
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