dimensionalpulsar commited on
Commit
cad019a
·
verified ·
1 Parent(s): 9fca902

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +6 -4
index.html CHANGED
@@ -8,14 +8,16 @@
8
  </head>
9
  <body class="bg-gray-900 text-white h-full">
10
  <div id="root" class="h-full w-full"></div>
 
11
  <script type="module" src="/main.jsx"></script>
12
 
13
  <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@emailjs/browser@4/dist/email.min.js"></script>
14
  <script type="text/javascript">
15
- (function(){
16
- // Tu Public Key de EmailJS
17
- emailjs.init("XK6EoFoAqInBoDjIe");
18
- })();
 
19
  </script>
20
  </body>
21
  </html>
 
8
  </head>
9
  <body class="bg-gray-900 text-white h-full">
10
  <div id="root" class="h-full w-full"></div>
11
+
12
  <script type="module" src="/main.jsx"></script>
13
 
14
  <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@emailjs/browser@4/dist/email.min.js"></script>
15
  <script type="text/javascript">
16
+ window.onload = function() {
17
+ if (window.emailjs) {
18
+ emailjs.init("XK6EoFoAqInBoDjIe");
19
+ }
20
+ };
21
  </script>
22
  </body>
23
  </html>