mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-02-09 16:10:49 +03:00
Wrap jQuery event after DOMContentLoaded
This commit is contained in:
parent
391e31c4dd
commit
28544cb247
|
@ -74,7 +74,9 @@ window.addEventListener('DOMContentLoaded',function() {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
$('.form-group').removeClass('row');
|
document.addEventListener('DOMContentLoaded', function() {
|
||||||
|
$('.form-group').removeClass('row');
|
||||||
|
})
|
||||||
</script>
|
</script>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{%- endraw %}
|
{%- endraw %}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user