diff --git a/awx/ui/static/js/controllers/Home.js b/awx/ui/static/js/controllers/Home.js index 385ac067a6..e59aa63de6 100644 --- a/awx/ui/static/js/controllers/Home.js +++ b/awx/ui/static/js/controllers/Home.js @@ -155,6 +155,14 @@ function HomeGroups($log, $scope, $filter, $compile, $location, $routeParams, Lo catch(err) { //ignore } + $('.popover').each(function() { + // remove lingering popover
. Seems to be a bug in TB3 RC1 + $(this).remove(); + }); + $('.tooltip').each( function() { + // close any lingering tool tipss + $(this).hide(); + }); elem.attr({ "aw-pop-over": html, "data-title": title, "data-placement": "right" }); $compile(elem)(scope); elem.on('shown.bs.popover', function() {