Fixed UI - Suit tab bug
diff --git a/views/ngXosViews/synchronizerNotifier/src/js/main.js b/views/ngXosViews/synchronizerNotifier/src/js/main.js
index e761fad..f65c4d1 100644
--- a/views/ngXosViews/synchronizerNotifier/src/js/main.js
+++ b/views/ngXosViews/synchronizerNotifier/src/js/main.js
@@ -3,9 +3,13 @@
angular.module('xos.synchronizerNotifier', [
'ngResource',
'ngCookies',
- 'ui.router',
'xos.helpers'
])
+.run(function($rootScope){
+ $rootScope.$on('$locationChangeStart', function(event) {
+ event.preventDefault();
+ });
+})
.service('Diag', function($rootScope, $http, $q, $interval){
let isRunning = false;