Bladeren bron

MC > do not autoscroll to top if only query-line params are different

Vijayakrishnan 4 jaren geleden
bovenliggende
commit
009290f908
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  1. 1 1
      public/js/mc.js

+ 1 - 1
public/js/mc.js

@@ -165,7 +165,7 @@ function onFastLoaded(_data, _href, _history) {
                 initPrimaryForm();
                 initPatientPresenceIndicator();
                 runMCInitializers();
-                if (window.top.currentMcUrl !== window.top.location.href) {
+                if (window.top.currentMcUrl.split('?')[0] !== window.top.location.href.split('?')[0]) {
                     $(window).scrollTop(0);
                 }
                 window.top.currentMcUrl = window.top.location.href;