Created
January 18, 2018 17:46
-
-
Save hopeseekr/5bf0af90827a27687264d6f1c23f2fed to your computer and use it in GitHub Desktop.
This file contains 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
// Ensure that the interstitial is properly centered. | |
var $centerDialog = function($dialog) { | |
var marginTop = ($dialog.height() + ($($window).height() / 2)) * -1; | |
var marginLeft = ($dialog.width() + ($($window).width() / 2)) * -1; | |
$dialog.css({ | |
top: '50%', | |
left: '50%', | |
margin: marginTop+'px 0 0 -' + marginLeft+'px' | |
}); | |
}; | |
$centerDialog($cryptoDialog); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment