Last active
February 7, 2017 16:48
-
-
Save FlorianBELLAZOUZ/76f13695ead0c825ddbca6e7b694f285 to your computer and use it in GitHub Desktop.
open a center pop window
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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