About
I have a switch that takes care of activating my menus from their address on the website.
switch($location.path()){
case '/perfil':
$scope.menuAtivo.perfil = 'active';
break;
case '/perfil/editar/1':
$scope.menuAtivo.perfil = 'active';
break;
}