diff options
author | Mario <mario@mariovavti.com> | 2021-06-17 10:14:23 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-06-17 10:14:23 +0000 |
commit | c268bc327a9c82acf05999039b0b3ab7191646eb (patch) | |
tree | 75a14ecfd2a449b6b086e5a9da2111abe6903eba /view/js/main.js | |
parent | e79a27c654589ed2ab3b3f2c1a6b603e2e642ad9 (diff) | |
download | volse-hubzilla-c268bc327a9c82acf05999039b0b3ab7191646eb.tar.gz volse-hubzilla-c268bc327a9c82acf05999039b0b3ab7191646eb.tar.bz2 volse-hubzilla-c268bc327a9c82acf05999039b0b3ab7191646eb.zip |
fix issues with browser back button and minor cleanup
Diffstat (limited to 'view/js/main.js')
-rw-r--r-- | view/js/main.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/view/js/main.js b/view/js/main.js index a3f238a45..78bd790cd 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -204,8 +204,12 @@ $(document).ready(function() { }); window.onpopstate = function(e) { - if(e.state !== null && e.state.b64mid !== bParam_mid) + if(e.state !== null && e.state.b64mid !== bParam_mid) { prepareLiveUpdate(e.state.b64mid, ''); + $('.message').removeClass('active'); + $('[data-b64mid="' + e.state.b64mid + '"].message').addClass('active'); + } + }; //mod_mail only |