add new icon on sections

This commit is contained in:
bechi 2014-11-28 16:27:21 -03:00
commit e8be5814d4
11 changed files with 137 additions and 72 deletions

View file

@ -4,23 +4,23 @@ angular.module('copayApp.controllers').controller('SidebarController', function(
$scope.menu = [{
'title': 'Home',
'icon': 'fi-home',
'icon': 'icon-home',
'link': 'homeWallet'
}, {
'title': 'Receive',
'icon': 'fi-download',
'icon': 'icon-receive',
'link': 'receive'
}, {
'title': 'Send',
'icon': 'fi-arrow-right',
'icon': 'icon-paperplane',
'link': 'send'
}, {
'title': 'History',
'icon': 'fi-clipboard-pencil',
'icon': 'icon-history',
'link': 'history'
}, {
'title': 'Settings',
'icon': 'fi-widget',
'icon': 'icon-gear',
'link': 'more'
}];