Aleksander Machniak
2015-07-31 9ca27756f15ffe9bd52576a5a70cdde7b37bfb03
Fix wrong positioning of message list header on page scroll in Webkit browsers (#1490035)

Conflicts:

CHANGELOG
2 files modified
10 ■■■■■ changed files
CHANGELOG 3 ●●●● patch | view | raw | blame | history
program/js/list.js 7 ●●●●● patch | view | raw | blame | history
CHANGELOG
@@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Fix so E_DEPRECATED errors from PEAR libs are ignored by error_reporting change (#1490281)
- Fix compatibility with PHP 5.3 in rcube_ldap class (#1490424)
- Fix "Importing..." message does not hide on error (#1490422)
- Fix SQL error on logout when using session_storage=php (#1490421)
@@ -19,7 +20,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 so E_DEPRECATED errors from PEAR libs are ignored by error_reporting change (#1490281)
- 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 {