This commit is contained in:
Dobromir Popov
2025-10-24 14:20:40 +03:00
parent b970c4ca4d
commit d4ed894a92
4 changed files with 62 additions and 56 deletions

View File

@@ -74,11 +74,11 @@
<!-- jQuery (for convenience) -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<!-- Custom JavaScript -->
<script src="{{ url_for('static', filename='js/chart_manager.js') }}"></script>
<script src="{{ url_for('static', filename='js/annotation_manager.js') }}"></script>
<script src="{{ url_for('static', filename='js/time_navigator.js') }}"></script>
<script src="{{ url_for('static', filename='js/training_controller.js') }}"></script>
<!-- Custom JavaScript with cache busting -->
<script src="{{ url_for('static', filename='js/chart_manager.js') }}?v={{ range(1, 10000) | random }}"></script>
<script src="{{ url_for('static', filename='js/annotation_manager.js') }}?v={{ range(1, 10000) | random }}"></script>
<script src="{{ url_for('static', filename='js/time_navigator.js') }}?v={{ range(1, 10000) | random }}"></script>
<script src="{{ url_for('static', filename='js/training_controller.js') }}?v={{ range(1, 10000) | random }}"></script>
{% block extra_js %}{% endblock %}