-
-
Notifications
You must be signed in to change notification settings - Fork 0
Main #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Main #7
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -288,6 +288,8 @@ <h4 data-i18n="footer.sections.contact">Contact</h4> | |
| navLinks.classList.toggle('active'); | ||
| } | ||
| </script> | ||
| <script src="locales.js"></script> | ||
| <script src="theme.js"></script> | ||
|
Comment on lines
+291
to
+292
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
These two tags add a second load of Useful? React with 👍 / 👎. |
||
| <script src="chatbot.js"></script> | ||
| </body> | ||
| </html> | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These script tags are duplicates. Both locales.js and theme.js are already included earlier in the HTML at lines 251-252. Loading the same scripts twice can cause issues such as duplicate event listeners, reinitialization of objects, and increased page load time. Remove these duplicate script tags.