Skip to content

Instantly share code, notes, and snippets.

@mrfolkblues
Last active January 31, 2019 20:39
Show Gist options
  • Save mrfolkblues/2fae74f55bd9ca4f16d564fb62e100f0 to your computer and use it in GitHub Desktop.
Save mrfolkblues/2fae74f55bd9ca4f16d564fb62e100f0 to your computer and use it in GitHub Desktop.
window.location.origin Polyfill
if (!window.location.origin) {
window.location.origin = window.location.protocol + "//" + window.location.hostname + (window.location.port ? ':' + window.location.port: '');
}