Skip to content

Instantly share code, notes, and snippets.

@michaelowens
Last active December 24, 2015 21:29
Show Gist options
  • Save michaelowens/6866294 to your computer and use it in GitHub Desktop.
Save michaelowens/6866294 to your computer and use it in GitHub Desktop.
PB floating class for control-bar
<script>
$(function () {
var $controlBar = $('.control-bar'),
isFloating,
controlBarTimer;
controlBarTimer = setInterval(function () {
if (!$controlBar.attr('style') && isFloating) {
$controlBar.removeClass('floating');
isFloating = false;
}
if ($controlBar.attr('style') && !isFloating) {
$controlBar.addClass('floating');
isFloating = true;
}
}, 1);
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment