From ac507261f803c4feb834569ed9ee5830fe3f57c9 Mon Sep 17 00:00:00 2001 From: Gabriele Date: Mon, 8 Dec 2014 21:00:00 +0100 Subject: [PATCH] WebUI: Remove extra parethesis --- src/webui/www/public/scripts/prop-general.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/webui/www/public/scripts/prop-general.js b/src/webui/www/public/scripts/prop-general.js index 4f6147009..31481e06c 100644 --- a/src/webui/www/public/scripts/prop-general.js +++ b/src/webui/www/public/scripts/prop-general.js @@ -52,10 +52,10 @@ var loadTorrentData = function() { $('comment').set('html', data.comment); $('total_uploaded').set('html', friendlyUnit(data.total_uploaded) + " (" + friendlyUnit(data.total_uploaded_session) + - " (" + "_(this session)" + ")"); + " _(this session)" + ")"); $('total_downloaded').set('html', friendlyUnit(data.total_downloaded) + " (" + friendlyUnit(data.total_downloaded_session) + - " (" + "_(this session)" + ")"); + " _(this session)" + ")"); $('total_wasted').set('html', data.total_wasted); temp = data.up_limit; $('up_limit').set('html', temp == -1 ? "∞" : temp);