]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
WEBUI JS: Add free/total qtip for disk space (small correction)
authorJaroslav Kysela <perex@perex.cz>
Wed, 24 Jun 2015 21:00:41 +0000 (23:00 +0200)
committerJaroslav Kysela <perex@perex.cz>
Wed, 24 Jun 2015 21:00:41 +0000 (23:00 +0200)
src/webui/static/app/tvheadend.js

index b0480bd63a9dd15e4bc3c114d97bea80b846ecb1..365da0d05a61840682e1993804ed81a97683c994 100644 (file)
@@ -603,7 +603,7 @@ tvheadend.RootTabPanel = Ext.extend(Ext.TabPanel, {
         text = _('Disk space:') + '&nbsp;<b>' + human(bfree) + '/' + human(btotal) + '</b>';
         var el = Ext.get(this.diskSpaceItem.tabEl).child('span.x-tab-diskspace', true);
         el.innerHTML = text;
-        el.qtip = _('Free: ') + human(bfree) + ' ' + _('Total: ') + human(btotal);
+        el.qtip = _('Free:') + ' ' + human(bfree) + ' ' + _('Total:') + ' ' + human(btotal);
     },
 
     onLoginCmdClicked: function(e) {