Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WEBUI JS: use same style for login/disk space as for tab descriptors
  • Loading branch information
perexg committed Jun 25, 2015
1 parent 70c0d4f commit 28e05b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/webui/static/app/tvheadend.js
Expand Up @@ -511,7 +511,7 @@ tvheadend.RootTabPanel = Ext.extend(Ext.TabPanel, {
if (!this.loginTpl) {
var tt = new Ext.Template(
'<li class="x-tab-login" id="{id}">',
'<span class="x-tab-strip-login {iconCls}">{text}</span></li>'
'<span class="x-tab-strip-login {iconCls} x-tab-strip-text">{text}</span></li>'
);
tt.disableFormats = true;
tt.compile();
Expand All @@ -526,7 +526,7 @@ tvheadend.RootTabPanel = Ext.extend(Ext.TabPanel, {
if (!this.loginCmdTpl) {
var tt = new Ext.Template(
'<li class="x-tab-login" id="{id}"><a href="#">',
'<span class="x-tab-strip-login-cmd"></span></a></li>'
'<span class="x-tab-strip-login-cmd x-tab-strip-text"></span></a></li>'
);
tt.disableFormats = true;
tt.compile();
Expand All @@ -542,7 +542,7 @@ tvheadend.RootTabPanel = Ext.extend(Ext.TabPanel, {
if (!this.diskSpaceTpl) {
var tt = new Ext.Template(
'<li class="x-tab-login" id="{id}">',
'<span class="x-tab-diskspace"></span></li>'
'<span class="x-tab-diskspace x-tab-strip-text"></span></li>'
);
tt.disableFormats = true;
tt.compile();
Expand Down

1 comment on commit 28e05b8

@linuxlite
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Has anyone else lost the EPG info in the Electronic Program Guide with the latest git?
Image of EPG tab

Please sign in to comment.