Skip to content

Instantly share code, notes, and snippets.

@MacKentoch
Created February 22, 2016 10:18
Show Gist options
  • Save MacKentoch/18dbae6698a0e452838b to your computer and use it in GitHub Desktop.
Save MacKentoch/18dbae6698a0e452838b to your computer and use it in GitHub Desktop.
A fix for window.location.origin in Internet Explorer
if (!window.location.origin) {
window.location.origin = window.location.protocol + "//" + window.location.hostname + (window.location.port ? ':' + window.location.port: '');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment