# AngularJS - ui routing

# ui-router

# Tuto

# Examples

# url management

$location.search('year', $scope.year);
1
  • get specific arg
$location.search().year;
1
$location.url($location.path());
1
  • remove a specific args
$location.search('coords', null);
1

# issues

# Multiples parents views for a single child view

stackoverflow question

ui-router closed issue