You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
does not work when loaded with an HTTPS schema because it loads it resources explicitly over HTTP, and some browsers do not like switching from secure to insecure connections when loading resources.
The fix is to change all of the explicit "http://" resource-loading URLs to "//" (removing the http: prefix), which will allow it to work with both http and https.
The text was updated successfully, but these errors were encountered:
Inspecting [tools window] the website shows base.css, sites.css the google fonts, and site.js are all being called over HTTP. It looks like Google is blocking these.
They're only blocked because of the change in protocol from https to http. i have moved this over to the forum you linked to - i wasn't aware there was a separate repo for that.
The site:
http://www.html-tidy.org/
does not work when loaded with an HTTPS schema because it loads it resources explicitly over HTTP, and some browsers do not like switching from secure to insecure connections when loading resources.
The fix is to change all of the explicit "http://" resource-loading URLs to "//" (removing the http: prefix), which will allow it to work with both http and https.
The text was updated successfully, but these errors were encountered: