mirror of https://github.com/zulip/zulip.git
Fix use of old JS compression tag in login template
Instead of `compressed_js` in the `compress` library, we now use `minified_js` from the `minified_js` library. (CSS is not affected by the change.) (imported from commit 07aea9efbc83d30b354a7e044070563e93f7525a)
This commit is contained in:
parent
e5b855d883
commit
27f120e01f
|
@ -2,11 +2,11 @@
|
|||
|
||||
{# Login page. #}
|
||||
|
||||
{% load compressed %}
|
||||
{% load minified_js %}
|
||||
|
||||
{% block customhead %}
|
||||
{{ block.super }}
|
||||
{% compressed_js 'signup' %}
|
||||
{% minified_js 'signup' %}
|
||||
{% endblock %}
|
||||
|
||||
{% block portico_content %}
|
||||
|
|
Loading…
Reference in New Issue