Skip to content

Instantly share code, notes, and snippets.

@kwokhou
Created July 10, 2013 10:41
Show Gist options
  • Save kwokhou/5965302 to your computer and use it in GitHub Desktop.
Save kwokhou/5965302 to your computer and use it in GitHub Desktop.
AngularJS Router
angular.module('my.app.routing', [], function ($routeProvider, $locationProvider) {
$routeProvider.when('/path', {
templateUrl: '/path/to/foo.html',
controller: FooControler
});
$locationProvider.html5Mode(true);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment