From: mpmc Date: Fri, 5 Oct 2018 11:33:02 +0000 (+0100) Subject: webui: add tooltip to help button X-Git-Tag: v4.2.7~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e43f95696c6e412a877619166ce642d27aed179;p=thirdparty%2Ftvheadend.git webui: add tooltip to help button --- diff --git a/src/webui/static/app/epg.js b/src/webui/static/app/epg.js index c98561d0e..d08a26c4d 100644 --- a/src/webui/static/app/epg.js +++ b/src/webui/static/app/epg.js @@ -75,7 +75,7 @@ tvheadend.DurationStore = new Ext.data.SimpleStore({ // Function to convert numeric duration to corresponding label string // Note: triggered by minimum duration only. This would fail if ranges -// had the same minimum (e.g. 15-30 mins and 15-60 minutes) (which we don't have). +// had the same minimum (e.g. 15-30 mins and 15-60 minutes) (which we don't have). tvheadend.durationLookupRange = function(value) { durationString = ""; @@ -968,6 +968,7 @@ tvheadend.epg = function() { { text: _('Help'), iconCls: 'help', + tooltip: _('View help docs.') handler: function() { new tvheadend.mdhelp('epg'); } @@ -1054,7 +1055,7 @@ tvheadend.epg = function() { } } }); - + // Always reload the store when the tab is activated panel.on('beforeshow', function() { epgStore.reload(); @@ -1098,7 +1099,7 @@ tvheadend.epg = function() { } function createAutoRec() { - + if (!tvheadend.accessUpdate.dvr) return;