Skip to content

Instantly share code, notes, and snippets.

@FlorianBELLAZOUZ
Last active February 7, 2017 16:48
Show Gist options
  • Save FlorianBELLAZOUZ/76f13695ead0c825ddbca6e7b694f285 to your computer and use it in GitHub Desktop.
Save FlorianBELLAZOUZ/76f13695ead0c825ddbca6e7b694f285 to your computer and use it in GitHub Desktop.
open a center pop window
const popup= (url, title, w, h)=>{
var y = window.outerHeight / 2 + window.screenY - ( h / 2)
var x = window.outerWidth / 2 + window.screenX - ( w / 2)
return window.open(url, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=' + w + ', height=' + h + ', top=' + y + ', left=' + x);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment