]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
webui: add tooltip to help button
authormpmc <hello@markclarkstone.co.uk>
Fri, 5 Oct 2018 11:33:02 +0000 (12:33 +0100)
committerJaroslav Kysela <perex@perex.cz>
Mon, 8 Oct 2018 11:57:04 +0000 (13:57 +0200)
src/webui/static/app/epg.js

index c98561d0e63e24068cdc436e487c251bb954aedc..d08a26c4d1d16b361f7f11c19e53fe798e8157f0 100644 (file)
@@ -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;