quassy / elementary-apps

A website showcasing 3rd party software designed for elementary OS 0.3 Freya
https://quassy.github.io/elementary-apps/
Other
113 stars 164 forks source link

https everywhere #33

Closed quassy closed 9 years ago

quassy commented 9 years ago

In theory a tiny bit of Javascript should allow automatic redirects to https:

var host = "quassy.github.io"
if (window.location.host == host && window.location.protocol != "https:") {
  window.location.protocol = "https:"
}