Remove extra browse history item created by Clara download

This commit is contained in:
David Rowe 2016-12-11 17:43:55 +13:00
parent 4f0c429e7f
commit 14ecb24986

View file

@ -117,6 +117,7 @@
// Automatic download to High Fidelity. // Automatic download to High Fidelity.
var downloadTimer; var downloadTimer;
function startAutoDownload() { function startAutoDownload() {
window.scrollTo(0, 0); // Scroll to top ready for history.back().
if (!downloadTimer) { if (!downloadTimer) {
downloadTimer = setInterval(autoDownload, 1000); downloadTimer = setInterval(autoDownload, 1000);
} }
@ -131,6 +132,7 @@
EventBridge.emitWebEvent("CLARA.IO DOWNLOAD " + href); EventBridge.emitWebEvent("CLARA.IO DOWNLOAD " + href);
console.log("Clara.io FBX file download initiated for " + href); console.log("Clara.io FBX file download initiated for " + href);
$("a.btn.cancel").click(); $("a.btn.cancel").click();
history.back(); // Remove history item created by clicking "download".
}; };
} else { } else {
clearInterval(downloadTimer); clearInterval(downloadTimer);