Fixes: notifications

This commit is contained in:
Gustavo Maximiliano Cortez 2014-07-24 17:33:00 -03:00
commit 4c190c1132
4 changed files with 38 additions and 50 deletions

View file

@ -25,11 +25,11 @@ factory('notification', ['$timeout',
enabled: true
},
error: {
duration: 5000,
duration: 50000000,
enabled: true
},
success: {
duration: 5000,
duration: 50000000,
enabled: true
},
progress: {
@ -237,24 +237,6 @@ directive('notifications', function(notification, $compile) {
* Finally, the directive should have its own controller for
* handling all of the notifications from the notification service
*/
var html =
'<div class="dr-notification-wrapper" ng-repeat="noti in queue">' +
'<div class="dr-notification-close-btn" ng-click="removeNotification(noti)">' +
'<i class="fi-x"></i>' +
'</div>' +
'<div class="dr-notification">' +
'<div class="dr-notification-image dr-notification-type-{{noti.type}}" ng-switch on="noti.image">' +
'<i class="fi-{{noti.icon}}" ng-switch-when="false"></i>' +
'<img ng-src="{{noti.image}}" ng-switch-default />' +
'</div>' +
'<div class="dr-notification-content">' +
'<h3 class="dr-notification-title">{{noti.title}}</h3>' +
'<p class="dr-notification-text">{{noti.content}}</p>' +
'</div>' +
'</div>' +
'</div>';
function link(scope, element, attrs) {
var position = attrs.notifications;
position = position.split(' ');
@ -264,11 +246,10 @@ directive('notifications', function(notification, $compile) {
}
}
return {
restrict: 'A',
scope: {},
template: html,
template: '<div ng-include="\'views/includes/notifications.html\'"></div>',
link: link,
controller: ['$scope',
function NotificationsCtrl($scope) {