File: custom.js

package info (click to toggle)
dask-sphinx-theme 4.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 372 kB
  • sloc: python: 1,419; makefile: 16; javascript: 10
file content (10 lines) | stat: -rw-r--r-- 262 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
if (location.protocol == "http:") {
  if (
    !window.location.href.includes("localhost") &&
    !window.location.href.includes("127.0.0.1")
  ) {
    location.href =
      "https:" +
      window.location.href.substring(window.location.protocol.length);
  }
}