Sidebar support for small devices

This commit is contained in:
Gustavo Maximiliano Cortez 2014-10-28 12:37:15 -03:00
commit c8614b76c2
6 changed files with 84 additions and 21 deletions

View file

@ -35,6 +35,10 @@ angular.module('copayApp.controllers').controller('SidebarController', function(
}
};
$scope.signout = function() {
$scope.$emit('signout');
};
$scope.isActive = function(item) {
return item.link && item.link == $location.path().split('/')[1];
};