This commit is contained in:
Damien Churchill 2010-06-12 22:47:59 +01:00
parent 672668ccdb
commit 494c468da8

View File

@ -89,7 +89,7 @@ Deluge.Formatters = {
* @return {String} formatted string with KiB, MiB or GiB units. * @return {String} formatted string with KiB, MiB or GiB units.
*/ */
speed: function(bytes, showZero) { speed: function(bytes, showZero) {
return (!bytess && !showZero) ? '' : fsize(bytes, showZero) + '/s'; return (!bytes && !showZero) ? '' : fsize(bytes, showZero) + '/s';
}, },
/** /**