Skip to content

Commit

Permalink
Support https://
Browse files Browse the repository at this point in the history
Right now it points to http://fonts.googleapis.com/css?family=Open+Sans ; so in https deployments it does not load. By using https://fonts.googleapis.com/css?family=Open+Sans  (or //fonts.googleapis.com) it can load in both http and https deployments.
  • Loading branch information
porduna committed Dec 19, 2016
1 parent 17d1ea9 commit 63fafc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion labman_ud/templates/labman_ud/base.html
Expand Up @@ -45,7 +45,7 @@

<link rel="stylesheet" href="{% static 'css/tokenfield-typeahead.min.css' %}" />

<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css' />
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css' />

{% block header_css %}{% endblock %}
</head>
Expand Down

0 comments on commit 63fafc0

Please sign in to comment.