]> 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 12:00:04 +0000 (14:00 +0200)
src/webui/static/app/epg.js

index 5c8e60187f27e3f9e3fa9c4effb2cca79bb5204b..417d935ad4ccc3bc0cd86748f173ff5a45c9ecf8 100644 (file)
@@ -77,7 +77,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 = "";
@@ -1239,6 +1239,7 @@ tvheadend.epg = function() {
         {
             text: _('Help'),
             iconCls: 'help',
+            tooltip: _('View help docs.')
             handler: function() {
                 new tvheadend.mdhelp('epg');
             }
@@ -1338,7 +1339,7 @@ tvheadend.epg = function() {
             }
         }
     });
-    
+
     // Always reload the store when the tab is activated
     panel.on('beforeshow', function() {
         epgStore.reload();
@@ -1414,7 +1415,7 @@ tvheadend.epg = function() {
     }
 
     function createAutoRec() {
-    
+
         if (!tvheadend.accessUpdate.dvr)
             return;