Created
November 29, 2013 11:00
-
-
Save bverbeken/7704237 to your computer and use it in GitHub Desktop.
WnotW pricing table fix
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
$('#pricingModal').click(function(e){ | |
e.preventDefault(); | |
var scroll = $(window).scrollTop(); | |
$('#modalBackdrop, #modalPrice').show(); | |
$('#modalPrice').css({ | |
position: 'absolute', // This is missing | |
top: scroll + 100 | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment