What's the bug?
A general, vertical(ish) flicker when scrolling takes place in a togetherjs session.
What could be causing it?
Improper handling of scroll events. For smaller amounts of scroll, this is evident where when one page scrolls by delta amount, the other page while doing that also scrolls in the same manner whilst causing and sending scroll events to the OP.
The OP is now free and listening to scroll events and so reacts to the scroll values of the first pixel change (of the delta) and retreats back to the original position where it carries out the same scroll process again and sends the same set of scroll events to the new poster.
This happens to never end unless user intervenes with newer scroll values for the listener.
What do we need to do?
Take care of the sensitivity of scroll that is being considered.
OR
Carry an object field denoting the issuer of the original scroll process.
What's the bug?
A general, vertical(ish) flicker when scrolling takes place in a togetherjs session.
What could be causing it?
Improper handling of scroll events. For smaller amounts of scroll, this is evident where when one page scrolls by delta amount, the other page while doing that also scrolls in the same manner whilst causing and sending scroll events to the OP.
The OP is now free and listening to scroll events and so reacts to the scroll values of the first pixel change (of the delta) and retreats back to the original position where it carries out the same scroll process again and sends the same set of scroll events to the new poster.
This happens to never end unless user intervenes with newer scroll values for the listener.
What do we need to do?
Take care of the sensitivity of scroll that is being considered.
OR
Carry an object field denoting the issuer of the original scroll process.