Scroll should be reset when changing messages

Issue #425 resolved
Former user created an issue

In the web ui, when you select another message in the list, it is displayed but the scroll in the message is not restored to top.

I don't know if this is in purpose, but I think it should be reset to top.

Comments (4)

  1. Janos SUTO repo owner

    Edit view/javascript/piler-in.js, and locate the view_message_by_pos function, then add the following to the end:

    $('#mailpreviewframe').scrollTop(0);
    
  2. Log in to comment