Don't hide the floating recipient bar when scrolling.

We made this change for performance reasons that don't exist now that
we only render a small portion of your messages, and it causes a
distracting flicker when you scroll through messages slowly.

(imported from commit 33379320f6b90d93ec8beac17323b287f8bb2485)
This commit is contained in:
Jessica McKellar 2013-03-26 13:41:20 -04:00
parent 9451451672
commit 297bc7f09b
1 changed files with 0 additions and 6 deletions

View File

@ -568,12 +568,6 @@ $(function () {
});
$(window).scroll($.throttle(50, function (e) {
if (!hotkeys.in_scroll_caused_by_keypress) {
// Only hide the recipient bar when mousewheel/trackpad scrolling,
// not when going through messages one by one with the arrow
// keys.
hide_floating_recipient_bar();
}
scroll_finish();
}));