Explorar el Código

last dev commit

shjung hace 3 años
padre
commit
ef11eae634
Se han modificado 1 ficheros con 6 adiciones y 1 borrados
  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);
+        }
     };
 }