Skip to content

Instantly share code, notes, and snippets.

@jessemcdowell
Created April 1, 2014 19:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jessemcdowell/9920807 to your computer and use it in GitHub Desktop.
Save jessemcdowell/9920807 to your computer and use it in GitHub Desktop.
Triggering Navigation
module.controller('Page1Controller', ['$scope', 'navigation', function($scope, navigation) {
$scope.navigate = function (navigationParameter) {
navigation.navigate('/Page2', navigationParameter);
};
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment