Commit 9bc78868 authored by campaign's avatar campaign

添加保存时可修改文件名

parent 5573c91c
...@@ -304,7 +304,7 @@ $( function () { ...@@ -304,7 +304,7 @@ $( function () {
// 加载用户头像 // 加载用户头像
function loadAvator() { function loadAvator() {
var $img = $( '<img />' ).attr( { var $img = $( '<img />' ).attr( {
'src': '../social/loading.gif', 'src': 'social/loading.gif',
'width': 16, 'width': 16,
'height': 16 'height': 16
} ).prependTo( $user_btn ); } ).prependTo( $user_btn );
...@@ -483,7 +483,8 @@ $( function () { ...@@ -483,7 +483,8 @@ $( function () {
} }
function generateRemotePath() { function generateRemotePath() {
return '/apps/kityminder/' + minder.getMinderTitle() + '.km'; var filename = prompt("文件名字:",minder.getMinderTitle() )||minder.getMinderTitle() ;
return '/apps/kityminder/' + filename + '.km';
} }
function save() { function save() {
...@@ -501,7 +502,6 @@ $( function () { ...@@ -501,7 +502,6 @@ $( function () {
var timeout = setTimeout( function () { var timeout = setTimeout( function () {
error( '保存到云盘超时,可能是网络不稳定导致。' ); error( '保存到云盘超时,可能是网络不稳定导致。' );
}, 15000 ); }, 15000 );
sto.uploadTextFile( data, remotePath || generateRemotePath(), { sto.uploadTextFile( data, remotePath || generateRemotePath(), {
ondup: remotePath ? sto.constant.ONDUP_OVERWRITE : sto.constant.ONDUP_NEWCOPY, ondup: remotePath ? sto.constant.ONDUP_OVERWRITE : sto.constant.ONDUP_NEWCOPY,
success: function ( savedFile ) { success: function ( savedFile ) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment