Commit 503c74462dbba7828a6a145c353733f8ae5cf6d0
Committed by
Sergio Oliveira
1 parent
6c91510c
Exists in
master
and in
39 other branches
Fix css include bug in converse.js
Showing
1 changed file
with
3 additions
and
2 deletions
Show diff stats
src/templates/base.html
... | ... | @@ -22,8 +22,6 @@ |
22 | 22 | href="{{ STATIC_URL }}third-party/font-awesome/css/font-awesome.min.css" |
23 | 23 | type="text/css" media="screen" /> |
24 | 24 | |
25 | - <link rel="stylesheet" href="{{ STATIC_URL }}css/screen.css" | |
26 | - type="text/css" media="screen" /> | |
27 | 25 | |
28 | 26 | <!-- JQuery 2+ won't work for IE < 9 --> |
29 | 27 | <script type="text/javascript" src="{{ STATIC_URL }}third-party/jquery-2.0.3.min.js"></script> |
... | ... | @@ -38,6 +36,9 @@ |
38 | 36 | {% conversejs_static %} |
39 | 37 | {% endif %} |
40 | 38 | |
39 | + <link rel="stylesheet" href="{{ STATIC_URL }}css/screen.css" | |
40 | + type="text/css" media="screen" /> | |
41 | + | |
41 | 42 | {% endblock %} |
42 | 43 | </head> |
43 | 44 | ... | ... |