diff --git a/awx/ui/static/js/controllers/Inventories.js b/awx/ui/static/js/controllers/Inventories.js index 9f4a27fbd0..4b44585f8f 100644 --- a/awx/ui/static/js/controllers/Inventories.js +++ b/awx/ui/static/js/controllers/Inventories.js @@ -38,6 +38,14 @@ function InventoriesList($scope, $rootScope, $location, $log, $routeParams, $com 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() {