From e3fda8a82917510b77cde4afddb58270fd8a5556 Mon Sep 17 00:00:00 2001 From: Mike Olund Date: Fri, 24 Mar 2017 13:09:05 -0700 Subject: [PATCH] DIV-323 - remove the 'wait' spinner when the back button is pressed --- edivorce/apps/core/static/js/main.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/edivorce/apps/core/static/js/main.js b/edivorce/apps/core/static/js/main.js index 0fa3a6cb..7b9001ad 100755 --- a/edivorce/apps/core/static/js/main.js +++ b/edivorce/apps/core/static/js/main.js @@ -190,4 +190,7 @@ $("a.more_information-close").click(function () { $(".question-well").click(function () { $(".question-well").removeClass('hasFocus'); $(this).addClass('hasFocus'); -}); \ No newline at end of file +}); + +// kills the spinner when the back button is pressed +window.onunload = function () { };