change notification icons

This commit is contained in:
Manuel Araoz 2014-06-23 10:34:40 -03:00
commit 4b4d34224b
2 changed files with 6 additions and 6 deletions

View file

@ -110,23 +110,23 @@ angular.module('copayApp.services').
/* ============== NOTIFICATION METHODS ==============*/
info: function(title, content, userData){
return this.awesomeNotify('info','loop', title, content, userData);
return this.awesomeNotify('info', 'info', title, content, userData);
},
funds: function(title, content, userData){
return this.awesomeNotify('funds','bitcoin', title, content, userData);
return this.awesomeNotify('funds', 'bitcoin', title, content, userData);
},
error: function(title, content, userData){
return this.awesomeNotify('error', 'remove', title, content, userData);
return this.awesomeNotify('error', 'x', title, content, userData);
},
success: function(title, content, userData){
return this.awesomeNotify('success', 'ok', title, content, userData);
return this.awesomeNotify('success', 'check', title, content, userData);
},
warning: function(title, content, userData){
return this.awesomeNotify('warning', 'exclamation', title, content, userData);
return this.awesomeNotify('warning', 'alert', title, content, userData);
},
awesomeNotify: function(type, icon, title, content, userData){