Thomas Bruederli
2012-05-31 a2027101df54453a162b6a609bc85e5488ed7284
Fix window.resize handler on IE8 and Opera (#1488453)
3 files modified
14 ■■■■■ changed files
CHANGELOG 1 ●●●● patch | view | raw | blame | history
skins/larry/mail.css 5 ●●●●● patch | view | raw | blame | history
skins/larry/ui.js 8 ●●●● patch | view | raw | blame | history
CHANGELOG
@@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Fix window.resize handler on IE8 and Opera (#1488453)
- Don't let error message popups cover the login form (#1488500)
- Don't show errors when moving contacts into groups they are already in (#1488493)
- Make folders with unread messages in subfolders bold again (#1486793)
skins/larry/mail.css
@@ -803,7 +803,8 @@
#messagecontent .leftcol,
#messagepreview .leftcol {
    margin-right: 250px;
    margin-right: 252px;
    overflow-x: auto;
}
#messagecontent .rightcol,
@@ -849,7 +850,7 @@
div.message-part,
div.message-htmlpart {
    padding: 10px 2px;
    padding: 0 2px 10px 2px;
    border-top: 2px solid #f0f0f0;
}
skins/larry/ui.js
@@ -209,12 +209,8 @@
    })
    .contents().mouseup(body_mouseup);
    $(window).resize(function(e) {
      // check target due to bugs in jquery
      // http://bugs.jqueryui.com/ticket/7514
      // http://bugs.jquery.com/ticket/9841
      if (e.target == window) resize();
    });
    // don't use $(window).resize() due to some unwanted side-effects
    window.onresize = resize;
  }
  /**