aboutsummaryrefslogtreecommitdiffstats
path: root/js/savegame.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/savegame.js')
-rw-r--r--js/savegame.js19
1 files changed, 18 insertions, 1 deletions
diff --git a/js/savegame.js b/js/savegame.js
index 4a08f91..d5a9ba1 100644
--- a/js/savegame.js
+++ b/js/savegame.js
@@ -24,7 +24,9 @@ function loadSave() {
}
function downloadSave() {
- window.open("craftmine.php?op=downSave&filename="+getCheckedSave(), "_blank");
+ var filename = getCheckedSave();
+ if(filename == -1) downGame();
+ else window.open("craftmine.php?op=downSave&filename="+getCheckedSave(), "_blank");
}
function deleteSave() {
@@ -40,3 +42,18 @@ function saveGame() {
function downGame() {
window.open("craftmine.php?op=downSave", "_blank");
}
+
+function uploadSave() {
+ var selectedFile = document.getElementById("selectedFile");
+ if(selectedFile.files[0].size > 2000000) {
+ showError("File is too big.");
+ return;
+ }
+
+ var form = new FormData(); // Doesn't work with IE < 10 (and Opera Mini), but, as always, who cares?
+ form.append("savefile", selectedFile.files[0]);
+
+ sendRequest("upload.php", form, function(ret) {
+ console.log(ret);
+ }, true);
+}