Skip to content

Instantly share code, notes, and snippets.

@mops1k
Last active January 20, 2016 09:23
Show Gist options
  • Save mops1k/899e04b46a2275d7a806 to your computer and use it in GitHub Desktop.
Save mops1k/899e04b46a2275d7a806 to your computer and use it in GitHub Desktop.
var getStartPositionOnTheMiddleOfScreen = function(width = 0, height = 0) {
return {
x: window.screen.width/2-width/2,
y: window.screen.height/2-height/2
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment