fix matis comments

This commit is contained in:
Manuel Araoz 2014-06-17 16:44:09 -03:00
commit 0afd80bbd9

View file

@ -1,7 +1,7 @@
'use strict'; 'use strict';
angular.module('notifications', []). angular.module('notifications', []).
factory('$notification', ['$timeout',function($timeout, $rootScope){ factory('$notification', ['$timeout',function($timeout){
var notifications = JSON.parse(localStorage.getItem('$notifications')) || [], var notifications = JSON.parse(localStorage.getItem('$notifications')) || [],
queue = []; queue = [];
@ -197,9 +197,7 @@ angular.module('notifications', []).
clear: function(){ clear: function(){
notifications = []; notifications = [];
this.save(); this.save();
}, }
init: function() {}
}; };
}]). }]).