Javascript für automatischen Zertifikat-Login ausgelagert
Bernd Wurst

Bernd Wurst commited on 2014-02-08 02:31:22
Zeige 1 geänderte Dateien mit 12 Einfügungen und 0 Löschungen.

... ...
@@ -0,0 +1,12 @@
1
+function redirect(status) {
2
+  if (status == "ok") {
3
+    window.location.reload();
4
+  } else {
5
+    window.location.href="../../certlogin/";
6
+  }
7
+}
8
+
9
+$(function () {
10
+  $.get("../../certlogin/ajax.php", redirect);
11
+}
12
+);
0 13