diff --git a/js/controllers/header.js b/js/controllers/header.js index ba4a0d521..1c662ad86 100644 --- a/js/controllers/header.js +++ b/js/controllers/header.js @@ -9,7 +9,7 @@ angular.module('copayApp.controllers').controller('HeaderController', 'link': '#/addresses' }, { 'title': 'Transactions', - 'icon': 'fi-loop', + 'icon': 'fi-clipboard-pencil', 'link': '#/transactions' }, { 'title': 'Send', diff --git a/js/services/notifications.js b/js/services/notifications.js index 8d390949f..114d9a6bd 100644 --- a/js/services/notifications.js +++ b/js/services/notifications.js @@ -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){