diff options
| author | Jon Dufresne <jon.dufresne@gmail.com> | 2019-12-11 00:49:54 -0800 |
|---|---|---|
| committer | Carlton Gibson <carlton.gibson@noumenal.es> | 2019-12-11 09:49:54 +0100 |
| commit | e703b93a656b78b9b444bb3a9980e305ed002a70 (patch) | |
| tree | a97f9a7da09ddf36b2f4886b4b5680f1144faf0e /django/views/templates | |
| parent | d8e233352877c37c469687287e7761e05bdae94e (diff) | |
Fixed #31080 -- Removed redundant type="text/javascript" attribute from <script> tags.
Diffstat (limited to 'django/views/templates')
| -rw-r--r-- | django/views/templates/technical_500.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/views/templates/technical_500.html b/django/views/templates/technical_500.html index 6a8ea005b2..b01b00c8e6 100644 --- a/django/views/templates/technical_500.html +++ b/django/views/templates/technical_500.html @@ -63,7 +63,7 @@ .append-bottom { margin-bottom: 10px; } </style> {% if not is_email %} - <script type="text/javascript"> + <script> function hideAll(elems) { for (var e = 0; e < elems.length; e++) { elems[e].style.display = 'none'; |
