From 54b33f181f70786a2df624061e7a2ffb93a3eb73 Mon Sep 17 00:00:00 2001 From: Wu Cheng-Han Date: Tue, 15 Dec 2015 23:16:31 -0600 Subject: Fixed dropbox saver url not correct --- public/js/index.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'public/js') diff --git a/public/js/index.js b/public/js/index.js index 276c0c8b..4706d210 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -790,7 +790,7 @@ function closestIndex(arr, closestTo) { } //button actions -var url = window.location.pathname; +var url = window.location.protocol + '//' + window.location.host + window.location.pathname; //share ui.toolbar.publish.attr("href", url + "/publish"); ui.toolbar.slide.attr("href", url + "/slide"); @@ -817,7 +817,10 @@ ui.toolbar.export.dropbox.click(function () { 'url': url + "/download", 'filename': filename } - ] + ], + error: function (errorMessage) { + console.error(errorMessage); + } }; Dropbox.save(options); }); -- cgit v1.2.3