diff options
Diffstat (limited to 'id/server/data/deploy/conf/moa-id')
6 files changed, 0 insertions, 43 deletions
diff --git a/id/server/data/deploy/conf/moa-id/htmlTemplates/autocommit.js b/id/server/data/deploy/conf/moa-id/htmlTemplates/autocommit.js deleted file mode 100644 index d21a5651d..000000000 --- a/id/server/data/deploy/conf/moa-id/htmlTemplates/autocommit.js +++ /dev/null @@ -1,5 +0,0 @@ -function autoCommmit() { - document.forms[0].submit(); -} - -document.addEventListener('DOMContentLoaded', autoCommmit);
\ No newline at end of file diff --git a/id/server/data/deploy/conf/moa-id/htmlTemplates/basic.css b/id/server/data/deploy/conf/moa-id/htmlTemplates/basic.css deleted file mode 100644 index 4bec163a9..000000000 --- a/id/server/data/deploy/conf/moa-id/htmlTemplates/basic.css +++ /dev/null @@ -1,4 +0,0 @@ -@charset "utf-8"; - .bgTrans { - background-color:transparent - }
\ No newline at end of file diff --git a/id/server/data/deploy/conf/moa-id/htmlTemplates/bkudetected.js b/id/server/data/deploy/conf/moa-id/htmlTemplates/bkudetected.js deleted file mode 100644 index 7e4d2b12f..000000000 --- a/id/server/data/deploy/conf/moa-id/htmlTemplates/bkudetected.js +++ /dev/null @@ -1,3 +0,0 @@ -document.addEventListener('DOMContentLoaded', function () { - parent.setBKUAvailable(true); -});
\ No newline at end of file diff --git a/id/server/data/deploy/conf/moa-id/htmlTemplates/bkudetection.js b/id/server/data/deploy/conf/moa-id/htmlTemplates/bkudetection.js deleted file mode 100644 index b991beb60..000000000 --- a/id/server/data/deploy/conf/moa-id/htmlTemplates/bkudetection.js +++ /dev/null @@ -1,6 +0,0 @@ -function autoCommmit() { - parent.setBKUAvailable(false); - document.forms[0].submit(); -} - -document.addEventListener('DOMContentLoaded', autoCommmit);
\ No newline at end of file diff --git a/id/server/data/deploy/conf/moa-id/htmlTemplates/redirect.js b/id/server/data/deploy/conf/moa-id/htmlTemplates/redirect.js deleted file mode 100644 index 1bba3d5e0..000000000 --- a/id/server/data/deploy/conf/moa-id/htmlTemplates/redirect.js +++ /dev/null @@ -1,5 +0,0 @@ -function autoCommmit() { - document.getElementById('link').click(); -} - -document.addEventListener('DOMContentLoaded', autoCommmit);
\ No newline at end of file diff --git a/id/server/data/deploy/conf/moa-id/htmlTemplates/slo.js b/id/server/data/deploy/conf/moa-id/htmlTemplates/slo.js deleted file mode 100644 index c85837c8a..000000000 --- a/id/server/data/deploy/conf/moa-id/htmlTemplates/slo.js +++ /dev/null @@ -1,20 +0,0 @@ -function sloTimeOut() { - document.getElementById("timeoutURL").click(); -} -function RestartAfterDelay() { - var eDate = null; - var MilliSekZeit = 0; - var SysDatumJetzt = new Date(); - var SysDatumJetztMilli = SysDatumJetzt.getTime(); - - do { - eDate = new Date(); - MilliSekZeit = eDate.getTime(); - } while ((MilliSekZeit-SysDatumJetztMilli) < $timeout); - - sloTimeOut(); -} - -document.addEventListener('DOMContentLoaded', function () { - setTimeout(sloTimeOut, 30000); -});
\ No newline at end of file |