Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save liesislukas/64307154ea321742c1ef698b9bfd6f6b to your computer and use it in GitHub Desktop.
Save liesislukas/64307154ea321742c1ef698b9bfd6f6b to your computer and use it in GitHub Desktop.
export default function openInTab({url}) {
let instance = window.open('about:blank');
if (url.indexOf('http') !== 0) {
url = `http://${url}`;
}
let meta = `<meta http-equiv="refresh" content="0;url=${url}">`;
instance.document.write(meta);
instance.document.close();
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment