Skip to content

Instantly share code, notes, and snippets.

@pbedat
Last active August 29, 2015 14:03
Show Gist options
  • Select an option

  • Save pbedat/d3fc1695dc12ad7900fb to your computer and use it in GitHub Desktop.

Select an option

Save pbedat/d3fc1695dc12ad7900fb to your computer and use it in GitHub Desktop.
$stateProvider.state("wf.employee", {
abstract: true,
url: "employees/:id",
resolve: {
employee: function(EmployeeModel, $stateParams){
return EmployeeModel.get($stateParams.id);
}
}
}).state("wf.employee.salary", {
//...
}).state("wf.employee.timesheet", {
//...
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment