Skip to content

Instantly share code, notes, and snippets.

@hizo
Created December 1, 2015 09:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hizo/5c2ac7a81208a2da7fb1 to your computer and use it in GitHub Desktop.
Save hizo/5c2ac7a81208a2da7fb1 to your computer and use it in GitHub Desktop.
const windowPopup = (url, width, height) => {
const left = (screen.width / 2) - (width / 2),
top = (screen.height / 2) - (height / 2);
window.open(
url,
"",
"menubar=no,toolbar=no,resizable=yes,scrollbars=yes,width=" + width + ",height=" + height + ",top=" + top + ",left=" + left
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment