Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bpartridge83/3363654 to your computer and use it in GitHub Desktop.
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%.
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