Преглед на файлове

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

Vijayakrishnan преди 4 години
родител
ревизия
009290f908
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  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;