diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-06-23 08:02:37 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-06-23 08:02:37 +0000 |
| commit | 7e778b784b2f2f2967254ba94da020443e382a70 (patch) | |
| tree | 8b082b1cddfe165c9a87b9729109095f7287650c /roundcubemail | |
| parent | c5d17bc98614cb09f7fc77b27482a7750f275171 (diff) | |
- Fix quota indicator position on Opera 10.10
git-svn-id: https://svn.roundcube.net/trunk@3779 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail')
| -rw-r--r-- | roundcubemail/program/js/app.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index 3b5b72725..666726cf0 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/program/js/app.js @@ -4825,6 +4825,9 @@ function rcube_webmail() quota_width = parseInt(quota / 100 * width), pos = $(obj).position(); + // Opera bug? + pos.top = Math.max(0, pos.top); + this.env.indicator_width = width; this.env.indicator_height = height; |
