Skip to content

Instantly share code, notes, and snippets.

@jhanstra
Created October 2, 2014 19:05
Show Gist options
  • Save jhanstra/d982832630360352bc1d to your computer and use it in GitHub Desktop.
Save jhanstra/d982832630360352bc1d to your computer and use it in GitHub Desktop.
Beta Sidebar in uPortal
<div class="beta-sidebar"><p>You are using a <b>beta version</b> of MyUW.<br /><a href="/portal/Login?profile=default">Take me to classic view.</a></p>
</div>
<script>
up.jQuery(document).ready(function() {
up.jQuery(window).scroll(function() {
if (up.jQuery(window).scrollTop() + up.jQuery(window).height() > up.jQuery(document).height()-125) { up.jQuery('.beta-sidebar').hide();}
if (up.jQuery(window).scrollTop() + up.jQuery(window).height() < up.jQuery(document).height()-125) { up.jQuery('.beta-sidebar').show(); }
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment