Last active
September 28, 2022 15:45
-
-
Save ten1seven/8339751976117c7ff2af0b2c46accdc3 to your computer and use it in GitHub Desktop.
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
module.exports = { | |
// opens a centered popup window | |
openWindow: function(url, width, height) { | |
var left = screen.width / 2 - width / 2; | |
var top = screen.height / 2 - height / 2; | |
window.open( | |
url, | |
'', | |
'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