Skip to content

Instantly share code, notes, and snippets.

@andretw
Created May 27, 2014 04:37
Show Gist options
  • Save andretw/b6273d705e72071b258d to your computer and use it in GitHub Desktop.
Save andretw/b6273d705e72071b258d to your computer and use it in GitHub Desktop.
Re-position the floating menu
function rePositionMenu(){
if($(window).height() < 720){
$('.guide-sidebar').css('position', '');
}else{
$('.guide-sidebar').css('position', 'fixed');
}
}
$('document').ready(function(){
rePositionMenu();
});
$( window ).resize(function() {
rePositionMenu();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment