From e394579029084010925e536150122f286dce3b5b Mon Sep 17 00:00:00 2001
From: ulrich <undisclosed>
Date: Thu, 12 Dec 2019 06:45:19 +0000
Subject: [PATCH] in Arbeit: Verwendung von jQuery entfernen
---
index.html | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/index.html b/index.html
index e04b5a4..9e68458 100644
--- a/index.html
+++ b/index.html
@@ -69,11 +69,11 @@
<script src="jslib/vorlagen.js"></script>
<script src="app.js"></script>
<script>
- var app;
- $(document).ready(function() {
- app = new AppVorlage();
- app.init();
- });
+ var app;
+ document.addEventListener('DOMContentLoaded', function () {
+ app = new AppVorlage();
+ app.init();
+ });
</script>
</body>
</html>
--
Gitblit v1.9.3