Added tooltip to group schedule action button

This commit is contained in:
Michael Abashian
2016-07-22 08:54:50 -04:00
parent 6fa95322f5
commit 180ec67d33
2 changed files with 4 additions and 1 deletions

View File

@@ -165,6 +165,7 @@ angular.module('GroupsHelper', [ 'RestServices', 'Utilities', listGenerator.name
has_inventory_sources = params.has_inventory_sources, has_inventory_sources = params.has_inventory_sources,
launch_class = '', launch_class = '',
launch_tip = 'Start sync process', launch_tip = 'Start sync process',
schedule_tip = 'Schedule future inventory syncs',
stat, stat_class, status_tip; stat, stat_class, status_tip;
stat = status; stat = status;
@@ -225,7 +226,8 @@ angular.module('GroupsHelper', [ 'RestServices', 'Utilities', listGenerator.name
"tooltip": status_tip, "tooltip": status_tip,
"status": stat, "status": stat,
"launch_class": launch_class, "launch_class": launch_class,
"launch_tip": launch_tip "launch_tip": launch_tip,
"schedule_tip": schedule_tip
}; };
}; };
} }

View File

@@ -151,6 +151,7 @@
{status_tooltip: group_status.tooltip}, {status_tooltip: group_status.tooltip},
{launch_tooltip: group_status.launch_tip}, {launch_tooltip: group_status.launch_tip},
{launch_class: group_status.launch_class}, {launch_class: group_status.launch_class},
{group_schedule_tooltip: group_status.schedule_tip},
{hosts_status_tip: hosts_status.tooltip}, {hosts_status_tip: hosts_status.tooltip},
{hosts_status_class: hosts_status.class}, {hosts_status_class: hosts_status.class},
{source: group.summary_fields.inventory_source ? group.summary_fields.inventory_source.source : null}, {source: group.summary_fields.inventory_source ? group.summary_fields.inventory_source.source : null},