Skip to content

Commit

Permalink
Fix auto-resize in radiator view
Browse files Browse the repository at this point in the history
This fixes the links to jquery.
See also #592 and 558597c
  • Loading branch information
chrisongthb authored and bastelfreak committed Feb 12, 2021
1 parent 9d828e6 commit af87dc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions puppetboard/templates/radiator.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
{% endif %}
<link href="{{ url_for('static', filename='css/radiator.css')}}" media="screen" rel="stylesheet" type="text/css" />
{% if config.OFFLINE_MODE %}
<script src="{{ url_for('static', filename='jquery-3.4.1/jquery.min.js') }}"></script>
<script src="{{ url_for('static', filename='jquery-3.5.1/jquery.min.js') }}"></script>
{% else %}
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
{% endif %}
<script src="{{ url_for('static', filename='js/radiator.js')}}" type="text/javascript"></script>
</head>
Expand Down

0 comments on commit af87dc2

Please sign in to comment.