From 4b4d34224bb2aafc2c7a894372a068bd97b89bec Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Mon, 23 Jun 2014 10:34:40 -0300 Subject: [PATCH] change notification icons --- js/controllers/header.js | 2 +- js/services/notifications.js | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) 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){