GUAC-1120: Move notifications into own service.

This commit is contained in:
Michael Jumper
2015-03-12 15:57:53 -07:00
parent 0d83f0e83d
commit 4475fcb7fb
13 changed files with 219 additions and 145 deletions

View File

@@ -35,9 +35,9 @@ THE SOFTWARE.
<body ng-class="page.bodyClassName">
<!-- Global status/error dialog -->
<div ng-class="{shown: status}" class="status-outer">
<div ng-class="{shown: guacNotification.status}" class="status-outer">
<div class="status-middle">
<guac-notification notification="status"></guac-notification>
<guac-notification notification="guacNotification.status"></guac-notification>
</div>
</div>
@@ -46,7 +46,7 @@ THE SOFTWARE.
<!-- Notification area -->
<div id="notificationArea">
<div ng-repeat="wrapper in notifications">
<div ng-repeat="wrapper in guacNotification.notifications">
<guac-notification notification="wrapper.notification"></guac-notification>
</div>
</div>