Quellcode durchsuchen

last dev commit

shjung vor 3 Jahren
Ursprung
Commit
ef11eae634
1 geänderte Dateien mit 6 neuen und 1 gelöschten Zeilen
  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);
+        }
     };
 }