Fixes: U4-4827 The new speechbubble container is placed over the save and publish buttons

This commit is contained in:
Shannon
2014-05-08 12:26:59 +10:00
parent 516723d31d
commit 22b506e2fb

View File

@@ -1,18 +1,18 @@
<div id='speechbubble' class='umb-notification' ng-cloak>
<ul>
<li ng-repeat="notification in notifications" class="alert alert-block alert-{{notification.type}}">
<a class='close' ng-click="removeNotification($index)" prevent-default href>&times;</a>
<li ng-repeat="notification in notifications" class="alert alert-block alert-{{notification.type}}" ng-click="removeNotification($index)">
<a class='close' prevent-default href>&times;</a>
<div ng-if="notification.view">
<div ng-include="notification.view"></div>
</div>
<div ng-if="notification.view">
<div ng-include="notification.view"></div>
</div>
<div ng-if="notification.headline">
<a ng-href="{{notification.url}}" target="_blank">
<strong>{{notification.headline}}</strong>
<span ng-bind-html="notification.message"></span>
</a>
</div>
<div ng-if="notification.headline">
<a ng-href="{{notification.url}}" target="_blank">
<strong>{{notification.headline}}</strong>
<span ng-bind-html="notification.message"></span>
</a>
</div>
</li>
</ul>
</div>