We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In all the .ejs files in templates dir, we have:
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
It should be replaced by:
<link href='//fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
(without the http:) That way, "http://google.." is use when accessing the pad with http and "https://googe.."when accessing with https.
If not, when accessing with https, in Firefox, we have an error:
Blocage du chargement du contenu mixte actif (mixed active content) « http://fonts.googleapis.com/css?family=Open+Sans:400,700 »
See https://developer.mozilla.org/fr/docs/Security/MixedContent
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In all the .ejs files in templates dir, we have:
It should be replaced by:
(without the http:)
That way, "http://google.." is use when accessing the pad with http and "https://googe.."when accessing with https.
If not, when accessing with https, in Firefox, we have an error:
See https://developer.mozilla.org/fr/docs/Security/MixedContent
The text was updated successfully, but these errors were encountered: