Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WEBUI JS: Add free/total qtip for disk space (small correction)
  • Loading branch information
perexg committed Jun 24, 2015
1 parent 70f4152 commit 56f4bab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webui/static/app/tvheadend.js
Expand Up @@ -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) {
Expand Down

0 comments on commit 56f4bab

Please sign in to comment.