cache busting JS files
This commit is contained in:
@@ -200,8 +200,8 @@
|
||||
window.currentUserId = "{{ current_user.id }}";
|
||||
window.sendMessageUrl = "{{ url_for('conversations.send_message', conversation_id=conversation.id) }}";
|
||||
</script>
|
||||
<script src="{{ url_for('static', filename='js/chat-manager.js') }}"></script>
|
||||
<script src="{{ url_for('static', filename='js/conversation.js') }}"></script>
|
||||
<script src="{{ url_for('static', filename='js/member-management.js') }}"></script>
|
||||
<script src="{{ url_for('static', filename='js/chat-manager.js', v=config.CSS_VERSION) }}"></script>
|
||||
<script src="{{ url_for('static', filename='js/conversation.js', v=config.CSS_VERSION) }}"></script>
|
||||
<script src="{{ url_for('static', filename='js/member-management.js', v=config.CSS_VERSION) }}"></script>
|
||||
{% endblock %}
|
||||
{% endblock content %}
|
||||
@@ -146,5 +146,5 @@
|
||||
{% block extra_js %}
|
||||
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/js/select2.min.js"></script>
|
||||
<script src="{{ url_for('static', filename='js/create-conversation.js') }}"></script>
|
||||
<script src="{{ url_for('static', filename='js/create-conversation.js', v=config.CSS_VERSION) }}"></script>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user