소스 검색

last dev commit

shjung 3 년 전
부모
커밋
ef11eae634
1개의 변경된 파일6개의 추가작업 그리고 1개의 파일을 삭제
  1. 6 1
      src/main/resources/static/application/op/99.common/common.js

+ 6 - 1
src/main/resources/static/application/op/99.common/common.js

@@ -892,7 +892,12 @@ function CsAppLauncher(options) {
                 options.onIgnored();
             }
         }, dialogTimeout);
-        window.location = url;
+        // window.location = url;
+        try {
+            window.location.href = url;
+        } catch (e) {
+            console.error(e);
+        }
     };
 }