We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b68ffeb commit ac0a81aCopy full SHA for ac0a81a
app/client/admin/js/alert/AlertApp.js
@@ -70,6 +70,9 @@
70
}, timeout);
71
72
$rootScope.alerts.push(alert);
73
+ },
74
+ closeAll: function() {
75
+ $rootScope.alerts = [];
76
}
77
};
78
return alertService;
app/client/admin/js/ov/MainController.js
@@ -44,6 +44,7 @@
44
applicationService.destroy();
45
userService.destroy();
46
entityService.deleteCache();
47
+ alertService.closeAll();
48
$location.path('/login');
49
50
0 commit comments