From d7feebe4ee5ebdd1acd004aa834cb3c4220e4f81 Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Thu, 28 May 2020 15:06:06 +1000 Subject: [PATCH 1/2] #1123 Load the ajax.gif in receive.js via relative directory, now that static path is not... static --- share/static/js/receive.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/share/static/js/receive.js b/share/static/js/receive.js index cbd60954..30b6a46d 100644 --- a/share/static/js/receive.js +++ b/share/static/js/receive.js @@ -4,6 +4,11 @@ $(function(){ $('#flashes').append($('
  • ').addClass(category).text(message)); }; + var scriptEls = document.getElementsByTagName( 'script' ); + var thisScriptEl = scriptEls[scriptEls.length - 1]; + var scriptPath = thisScriptEl.src; + var scriptFolder = scriptPath.substr(0, scriptPath.lastIndexOf( '/' )+1 ); + // Intercept submitting the form $('#send').submit(function(event){ event.preventDefault(); @@ -38,7 +43,7 @@ $(function(){ // and update the status if(event.loaded == event.total) { $('.cancel', ajax.$upload_div).remove(); - $('.upload-status', ajax.$upload_div).html(' Waiting for data to finish traversing Tor network ...'); + $('.upload-status', ajax.$upload_div).html(' Waiting for data to finish traversing Tor network ...'); } }, false); From ea0d0e696a01bcea293e1e7b5ffc8b56900f2ecd Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Mon, 8 Jun 2020 09:54:52 +1000 Subject: [PATCH 2/2] Use a more efficient way of parsing the path to /img on the static URL in order to load ajax.gif via receive.js --- share/static/js/receive.js | 8 +++----- share/templates/receive.html | 2 +- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/share/static/js/receive.js b/share/static/js/receive.js index 30b6a46d..eac67412 100644 --- a/share/static/js/receive.js +++ b/share/static/js/receive.js @@ -4,10 +4,8 @@ $(function(){ $('#flashes').append($('
  • ').addClass(category).text(message)); }; - var scriptEls = document.getElementsByTagName( 'script' ); - var thisScriptEl = scriptEls[scriptEls.length - 1]; - var scriptPath = thisScriptEl.src; - var scriptFolder = scriptPath.substr(0, scriptPath.lastIndexOf( '/' )+1 ); + var scriptSrc = document.getElementById('receive-script').src; + var staticImgPath = scriptSrc.substr(0, scriptSrc.lastIndexOf( '/' )+1).replace('js', 'img'); // Intercept submitting the form $('#send').submit(function(event){ @@ -43,7 +41,7 @@ $(function(){ // and update the status if(event.loaded == event.total) { $('.cancel', ajax.$upload_div).remove(); - $('.upload-status', ajax.$upload_div).html(' Waiting for data to finish traversing Tor network ...'); + $('.upload-status', ajax.$upload_div).html(' Waiting for data to finish traversing Tor network ...'); } }, false); diff --git a/share/templates/receive.html b/share/templates/receive.html index 59a3ebe4..08875db1 100644 --- a/share/templates/receive.html +++ b/share/templates/receive.html @@ -39,6 +39,6 @@ - +