From 3b744ae978b757ab104d6486b82d4310f2195025 Mon Sep 17 00:00:00 2001 From: Damien Churchill Date: Fri, 24 Apr 2009 18:31:17 +0000 Subject: [PATCH] set values to blank rather than the initial bogus values first used --- deluge/ui/web/js/Deluge.Statusbar.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/deluge/ui/web/js/Deluge.Statusbar.js b/deluge/ui/web/js/Deluge.Statusbar.js index ea9066e39..8704466dc 100644 --- a/deluge/ui/web/js/Deluge.Statusbar.js +++ b/deluge/ui/web/js/Deluge.Statusbar.js @@ -19,30 +19,30 @@ createButtons: function() { this.add({ id: 'statusbar-connections', - text: '200 (200)', + text: ' ', cls: 'x-btn-text-icon', iconCls: 'x-deluge-connections', menu: Deluge.Menus.Connections }, '-', { id: 'statusbar-downspeed', - text: '9.8KiB/s (30 KiB/s)', + text: ' ', cls: 'x-btn-text-icon', iconCls: 'x-deluge-downloading', menu: Deluge.Menus.Download }, '-', { id: 'statusbar-upspeed', - text: '9.8KiB/s (30 KiB/s)', + text: ' ', cls: 'x-btn-text-icon', iconCls: 'x-deluge-seeding', menu: Deluge.Menus.Upload }, '-', { id: 'statusbar-traffic', - text: '1.53/2,65 KiB/s', + text: ' ', cls: 'x-btn-text-icon', iconCls: 'x-deluge-traffic' }, '-', { id: 'statusbar-dht', - text: '161', + text: ' ', cls: 'x-btn-text-icon', iconCls: 'x-deluge-dht' });