Fixed dropbox saver url not correct

This commit is contained in:
Wu Cheng-Han 2015-12-15 23:16:31 -06:00
parent 827bd7dffb
commit 54b33f181f

View file

@ -790,7 +790,7 @@ function closestIndex(arr, closestTo) {
} }
//button actions //button actions
var url = window.location.pathname; var url = window.location.protocol + '//' + window.location.host + window.location.pathname;
//share //share
ui.toolbar.publish.attr("href", url + "/publish"); ui.toolbar.publish.attr("href", url + "/publish");
ui.toolbar.slide.attr("href", url + "/slide"); ui.toolbar.slide.attr("href", url + "/slide");
@ -817,7 +817,10 @@ ui.toolbar.export.dropbox.click(function () {
'url': url + "/download", 'url': url + "/download",
'filename': filename 'filename': filename
} }
] ],
error: function (errorMessage) {
console.error(errorMessage);
}
}; };
Dropbox.save(options); Dropbox.save(options);
}); });