浏览代码

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;