mirror of
https://github.com/ae-utbm/sith.git
synced 2025-11-23 21:26:56 +00:00
Remove defer from script where type=module is used
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
{% for js in statics.js %}
|
||||
<script-once type="module" src="{{ js }}" defer></script-once>
|
||||
<script-once type="module" src="{{ js }}"></script-once>
|
||||
{% endfor %}
|
||||
{% for css in statics.css %}
|
||||
<link-once rel="stylesheet" type="text/css" href="{{ css }}" defer></link-once>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<div>
|
||||
<script-once type="module" src="{{ statics.js }}" defer></script-once>
|
||||
<script-once type="module" src="{{ statics.js }}"></script-once>
|
||||
<link-once rel="stylesheet" type="text/css" href="{{ statics.css }}" defer></link-once>
|
||||
|
||||
<markdown-input name="{{ widget.name }}"{% include "django/forms/widgets/attrs.html" %}>{% if widget.value %}{{ widget.value }}{% endif %}</markdown-input>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<script-once type="module" src="{{ statics.js }}" defer></script-once>
|
||||
<script-once type="module" src="{{ statics.js }}"></script-once>
|
||||
<link-once rel="stylesheet" type="text/css" href="{{ statics.css }}" defer></link-once>
|
||||
|
||||
<span>
|
||||
|
||||
Reference in New Issue
Block a user