GUAC-1161: Store notification state in session-local storage.

This commit is contained in:
Michael Jumper
2015-04-23 13:57:44 -07:00
parent afd9cd8032
commit 592ce3b8d3
3 changed files with 63 additions and 32 deletions

View File

@@ -38,9 +38,9 @@ THE SOFTWARE.
<div ng-if="!expectedCredentials">
<!-- Global status/error dialog -->
<div ng-class="{shown: guacNotification.status}" class="status-outer">
<div ng-class="{shown: guacNotification.getStatus()}" class="status-outer">
<div class="status-middle">
<guac-notification notification="guacNotification.status"></guac-notification>
<guac-notification notification="guacNotification.getStatus()"></guac-notification>
</div>
</div>
@@ -49,7 +49,7 @@ THE SOFTWARE.
<!-- Notification area -->
<div id="notificationArea">
<div ng-repeat="wrapper in guacNotification.notifications">
<div ng-repeat="wrapper in guacNotification.getNotifications()">
<guac-notification notification="wrapper.notification"></guac-notification>
</div>
</div>