summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-10-24 19:18:35 +0000
committeralecpl <alec@alec.pl>2009-10-24 19:18:35 +0000
commit06e07571b651f959620c31c0d030f1adf62b590f (patch)
tree17c83f321e469d145b30c09c9d720c9a1e947b16
parent7415c02ecfe21eff80074605b93fd3354475e7b3 (diff)
- fix default quota image height
-rw-r--r--program/js/app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js
index 83162a983..9dc9c9198 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -4057,7 +4057,7 @@ function rcube_webmail()
var limit_high = 80;
var limit_mid = 55;
var width = data.width ? data.width : this.env.indicator_width ? this.env.indicator_width : 100;
- var height = data.height ? data.height : this.env.indicator_height ? this.env.indicator_height : 24;
+ var height = data.height ? data.height : this.env.indicator_height ? this.env.indicator_height : 14;
var quota = data.percent ? Math.abs(parseInt(data.percent)) : 0;
var quota_width = parseInt(quota / 100 * width);
var pos = $(obj).position();