Browse Source

DIV-323 - remove the 'wait' spinner when the back button is pressed

pull/160/head
Mike Olund 8 years ago
parent
commit
e3fda8a829
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      edivorce/apps/core/static/js/main.js

+ 4
- 1
edivorce/apps/core/static/js/main.js View File

@ -190,4 +190,7 @@ $("a.more_information-close").click(function () {
$(".question-well").click(function () {
$(".question-well").removeClass('hasFocus');
$(this).addClass('hasFocus');
});
});
// kills the spinner when the back button is pressed
window.onunload = function () { };

Loading…
Cancel
Save