diff --git a/awx/ui/static/js/app.js b/awx/ui/static/js/app.js
index 1bddad24fc..b7848c93cc 100644
--- a/awx/ui/static/js/app.js
+++ b/awx/ui/static/js/app.js
@@ -937,7 +937,7 @@ var tower = angular.module('Tower', [
LoadConfig, Store, ShowSocketHelp, AboutAnsibleHelp, ConfigureTower, CreateCustomInventory) {
- var html, e, sock;
+ var sock;
function activateTab() {
// Make the correct tab active
@@ -985,16 +985,6 @@ var tower = angular.module('Tower', [
$rootScope.removeOpenSocket();
}
$rootScope.removeOpenSocket = $rootScope.$on('OpenSocket', function() {
- html = "";
- e = angular.element(document.getElementById('socket-beacon-div'));
- e.empty().append(html);
- $compile(e)($rootScope);
-
- e = angular.element(document.getElementById('socket-beacon-li'));
- e.empty().append(html);
- $compile(e)($rootScope);
-
// Listen for job changes and issue callbacks to initiate
// DOM updates
function openSocket() {
diff --git a/awx/ui/static/js/main-menu/main-menu.partial.html b/awx/ui/static/js/main-menu/main-menu.partial.html
index 4c7ec3e335..e395133195 100644
--- a/awx/ui/static/js/main-menu/main-menu.partial.html
+++ b/awx/ui/static/js/main-menu/main-menu.partial.html
@@ -4,4 +4,5 @@
+
diff --git a/awx/ui/static/js/main-menu/main.js b/awx/ui/static/js/main-menu/main.js
index 8af8db94ea..4674e6fbd3 100644
--- a/awx/ui/static/js/main-menu/main.js
+++ b/awx/ui/static/js/main-menu/main.js
@@ -2,6 +2,7 @@ import mainMenu from './main-menu.directive';
import menuItem from './menu-item.directive';
import menuToggle from './menu-toggle.directive';
import portalModeLink from './portal-mode-link.directive';
+import webSocketStatus from './web-socket-status.directive';
import includePartial from 'tower/shared/include-partial/main';
@@ -10,4 +11,5 @@ export default
.directive('portalModeLink', portalModeLink)
.directive('menuItem', menuItem)
.directive('menuToggleButton', menuToggle)
+ .directive('webSocketStatus', webSocketStatus)
.directive('mainMenu', mainMenu);
diff --git a/awx/ui/static/js/main-menu/web-socket-status.directive.js b/awx/ui/static/js/main-menu/web-socket-status.directive.js
new file mode 100644
index 0000000000..844c129464
--- /dev/null
+++ b/awx/ui/static/js/main-menu/web-socket-status.directive.js
@@ -0,0 +1,16 @@
+export default ['$rootScope', function($rootScope) {
+ return {
+ restrict: 'E',
+ templateUrl: '/static/js/main-menu/web-socket-status.partial.html',
+ link: function(scope, element, attrs) {
+ scope.socketHelp = $rootScope.socketHelp;
+ scope.socketTip = $rootScope.socketTip;
+ $rootScope.$watch('socketStatus', function(newStatus) {
+ scope.socketStatus = newStatus;
+ });
+ $rootScope.$watch('socketTip', function(newTip) {
+ scope.socketTip = newTip;
+ });
+ }
+ };
+}]
diff --git a/awx/ui/static/js/main-menu/web-socket-status.partial.html b/awx/ui/static/js/main-menu/web-socket-status.partial.html
new file mode 100644
index 0000000000..3d3ee3f15d
--- /dev/null
+++ b/awx/ui/static/js/main-menu/web-socket-status.partial.html
@@ -0,0 +1,13 @@
+
+