Implemented URL query parsing for initial token /opa/?token=abcde
[src/app-framework-demo.git] / afb-client / bower_components / foundation-apps / js / angular / components / notification / notification-static.html
1 <div zf-swipe-close="swipe" class="static-notification {{ color }} {{ position }}">
2   <a href="#"
3     class="close-button"
4     ng-click="hide(); $event.preventDefault(); $event.stopPropagation()">&times;</a>
5   <div class="notification-icon" ng-if="image">
6     <img ng-src="{{ image }}"/>
7   </div>
8   <div class="notification-content">
9     <h1>{{ title }}</h1>
10     <p ng-transclude></p>
11   </div>
12 </div>