summaryrefslogtreecommitdiff
path: root/src/editor/simple/editor.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/editor/simple/editor.js')
-rw-r--r--src/editor/simple/editor.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/editor/simple/editor.js b/src/editor/simple/editor.js
index ea56548a4..9954c5f7e 100644
--- a/src/editor/simple/editor.js
+++ b/src/editor/simple/editor.js
@@ -969,7 +969,12 @@ function download_from_cloud() {
var newdir="/tmp/"+location.hash.substr(1)
local.put("dir",newdir);
if(olddir && uploaded && newdir!=olddir) {
- upload_json(function(){download_json(newdir)})
+ function download() { download_json(newdir) }
+ function rmolddir(){
+ ajax_http_get("upload.cgi?rmdir="+olddir+"&newdir="+newdir,
+ download,download)
+ }
+ upload_json(rmolddir)
}
else download_json(newdir)
}