Skip to content

Commit

Permalink
Remove type for script-tags where content is JavaScript
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Nov 20, 2024
1 parent b12d13b commit 59a224a
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/main/resources/templates/consent.html
Original file line number Diff line number Diff line change
Expand Up @@ -138,5 +138,5 @@ <h1 th:text="#{footerTitle}"></h1>
</div>
</div>
</body>
<script th:src="@{/lang.js}" type="text/javascript"></script>
<script th:src="@{/lang.js}"></script>
</html>
2 changes: 1 addition & 1 deletion src/main/resources/templates/device_continue.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ <h1 th:text="#{authenticated}"></h1>

</div>
</body>
<script th:src="@{/lang.js}" type="text/javascript"></script>
<script th:src="@{/lang.js}"></script>
</html>
2 changes: 1 addition & 1 deletion src/main/resources/templates/device_error.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ <h1 th:text="#{notAuthenticated}"></h1>

</div>
</body>
<script th:src="@{/lang.js}" type="text/javascript"></script>
<script th:src="@{/lang.js}"></script>
</html>
2 changes: 1 addition & 1 deletion src/main/resources/templates/form_post.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
<input th:if="${error_description != null}" type="hidden" name="error_description" th:value="${error_description}"/>
</form>
</body>
<script th:src="@{/post.js}" type="text/javascript"></script>
<script th:src="@{/post.js}"></script>
</html>
4 changes: 2 additions & 2 deletions src/main/resources/templates/no_session_found.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ <h1 class="error-title__heading">Error - No session found</h1>



<script src="/application.min.js" type="text/javascript"></script>
<script src="/application.min.js"></script>



</body></html>
</body></html>
4 changes: 2 additions & 2 deletions src/main/resources/templates/no_session_found_nl.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ <h1 class="error-title__heading">Fout - Geen sessie gevonden</h1>



<script src="/application.min.js" type="text/javascript"></script>
<script src="/application.min.js"></script>



</body></html>
</body></html>
4 changes: 2 additions & 2 deletions src/main/resources/templates/verify.html
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,6 @@ <h1 th:text="#{footerTitle}"></h1>
</div>
</div>
</body>
<script th:src="@{/main.js}" type="text/javascript"></script>
<script th:src="@{/lang.js}" type="text/javascript"></script>
<script th:src="@{/main.js}"></script>
<script th:src="@{/lang.js}"></script>
</html>

0 comments on commit 59a224a

Please sign in to comment.