]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
webui: more tooltips for help buttons!
authormpmc <hello@markclarkstone.co.uk>
Wed, 24 Oct 2018 13:00:59 +0000 (14:00 +0100)
committerJaroslav Kysela <perex@perex.cz>
Thu, 25 Oct 2018 16:43:21 +0000 (18:43 +0200)
src/webui/static/app/idnode.js
src/webui/static/app/servicemapper.js
src/webui/static/app/status.js

index 6d73d6aca300aea46d82d6c650b7539c1a88268e..0c0235e249cc52a5f639f8b7fe6f4461dae7c5d8 100644 (file)
@@ -1199,6 +1199,7 @@ tvheadend.idnode_editor = function(_uilevel, item, conf)
         }
         var helpBtn = new Ext.Button({
             text: _('Help'),
+            tooltip: _('View help docs.'),
             iconCls: 'help',
             handler: help
         });
@@ -2045,6 +2046,7 @@ tvheadend.idnode_grid = function(panel, conf)
         buttons.push(abuttons.uilevel ? '-' : '->');
         buttons.push({
             text: _('Help'),
+            tooltip: _('View help docs.'),
             iconCls: 'help',
             handler: help
         });
@@ -2432,6 +2434,7 @@ tvheadend.idnode_form_grid = function(panel, conf)
         buttons.push(abuttons.uilevel ? '-' : '->');
         buttons.push({
             text: _('Help'),
+            tooltip: _('View help docs.'),
             iconCls: 'help',
             handler: help
         });
@@ -2872,6 +2875,7 @@ tvheadend.idnode_simple = function(panel, conf)
         buttons.push(abuttons.uilevel ? '-' : '->');
         buttons.push({
             text: _('Help'),
+            tooltip: _('View help docs.'),
             iconCls: 'help',
             handler: help
         });
index b56df8b592de915876b85b870c1ac8dbd81bc092..bc0c2cc917184a093577368373f5e57c9d557555 100644 (file)
@@ -52,6 +52,7 @@ tvheadend.service_mapper_status = function(panel, index)
         tbar: ['->', {
              text: _('Help'),
              iconCls: 'help',
+             tooltip: _('View help docs.'),
              handler: function() {
                  new tvheadend.mdhelp('status_service_mapper')
              }
index e875eb3e1d5ffdd28ef79ff08569364a0036781c..bc8ce7f3c6b1c4a0c4b708325aefb07efebdc9fd 100644 (file)
@@ -120,14 +120,14 @@ tvheadend.status_subs = function(panel, index)
                 header: _("Service"),
                 dataIndex: 'service',
                 sortable: true
-            }, 
+            },
             {
                 width: 50,
                 id: 'profile',
                 header: _("Profile"),
                 dataIndex: 'profile',
                 sortable: true
-            }, 
+            },
             {
                 width: 50,
                 id: 'start',
@@ -179,7 +179,7 @@ tvheadend.status_subs = function(panel, index)
                 renderer: renderBw
             }
         ]);
-        
+
         function clicked(column, grid, index, e) {
             if (column.dataIndex == 'in' || column.dataIndex == 'out') {
                 var id = grid.getStore().getAt(index).id;
@@ -191,6 +191,7 @@ tvheadend.status_subs = function(panel, index)
         subs = new Ext.grid.GridPanel({
             tbar: ['->', {
                 text: _('Help'),
+                tooltip: _('View help docs.'),
                 iconCls: 'help',
                 handler: function() {
                     new tvheadend.mdhelp('status_subscriptions')
@@ -207,7 +208,7 @@ tvheadend.status_subs = function(panel, index)
                 forceFit: true
             }
         });
-        
+
         dpanel.add(subs);
         dpanel.doLayout(false, true);
     }
@@ -484,6 +485,7 @@ tvheadend.status_streams = function(panel, index)
         grid = new Ext.grid.GridPanel({
             tbar: ['->', {
                 text: _('Help'),
+                tooltip: _('View help docs.'),
                 iconCls: 'help',
                 handler: function() {
                     new tvheadend.mdhelp('status_stream')
@@ -501,7 +503,7 @@ tvheadend.status_streams = function(panel, index)
             },
             plugins: [actions]
         });
-        
+
         dpanel.add(grid);
         dpanel.doLayout(false, true);
     }
@@ -655,6 +657,7 @@ tvheadend.status_conns = function(panel, index) {
         grid = new Ext.grid.GridPanel({
             tbar: ['->', {
                 text: _('Help'),
+                tooltip: _('View help docs.'),
                 iconCls: 'help',
                 handler: function() {
                     new tvheadend.mdhelp('status_connections')
@@ -672,7 +675,7 @@ tvheadend.status_conns = function(panel, index) {
             },
             plugins: [actions]
         });
-        
+
         dpanel.add(grid);
         dpanel.doLayout(false, true);
     }