Aleksander Machniak
2015-07-31 8b40575b5c0d141a8a42b2003f59233a0bc7c4c0
Fix wrong positioning of message list header on page scroll in Webkit browsers (#1490035)
2 files modified
8 ■■■■■ changed files
CHANGELOG 1 ●●●● patch | view | raw | blame | history
program/js/list.js 7 ●●●●● patch | view | raw | blame | history
CHANGELOG
@@ -31,6 +31,7 @@
- Fix draft removal after a message is sent and storing sent message is disabled (#1490467)
- Fix so imap folder attribute comparisons are case-insensitive (#1490466)
- Fix bug where new messages weren't added to the list in search mode
- Fix wrong positioning of message list header on page scroll in Webkit browsers (#1490035)
RELEASE 1.1.2
-------------
program/js/list.js
@@ -248,9 +248,10 @@
    $(window).resize(function() { me.resize(); });
    $(window).scroll(function() {
      var w = $(window);
      me.fixed_header.css('marginLeft', (-w.scrollLeft()) + 'px');
      if (!bw.webkit)
        me.fixed_header.css('marginTop', (-w.scrollTop()) + 'px');
      me.fixed_header.css({
        marginLeft: -w.scrollLeft() + 'px',
        marginTop: -w.scrollTop() + 'px'
      });
    });
  }
  else {