diff options
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/app.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/program/js/app.js b/program/js/app.js index 3b5b72725..666726cf0 100644 --- a/program/js/app.js +++ b/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; |