Created
August 15, 2012 20:59
-
-
Save bpartridge83/3363654 to your computer and use it in GitHub Desktop.
The reason that the settings panel won't accept clicks is because the Flash element is positioned at a calculated partial-pixel, due to the margin-top property of 10%.
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
setTimeout(function(){ | |
var $div = $('div:last'), | |
marginTop = parseFloat($div.css('margin-top')); | |
$div.css({ | |
'margin-top' : Math.round(marginTop) | |
}); | |
}, 250); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment