1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #31080 -- Removed redundant type="text/javascript" attribute from <script> tags.

This commit is contained in:
Jon Dufresne
2019-12-11 00:49:54 -08:00
committed by Carlton Gibson
parent d8e2333528
commit e703b93a65
24 changed files with 137 additions and 141 deletions

View File

@@ -1,15 +1,15 @@
<html>
<head>
<script type="text/javascript" src="/jsi18n/app1/"></script>
<script type="text/javascript" src="/jsi18n/app2/"></script>
<script src="/jsi18n/app1/"></script>
<script src="/jsi18n/app2/"></script>
<body>
<p id="app1string">
<script type="text/javascript">
<script>
document.write(gettext('this app1 string is to be translated'))
</script>
</p>
<p id="app2string">
<script type="text/javascript">
<script>
document.write(gettext('this app2 string is to be translated'))
</script>
</p>