Skip to content

Instantly share code, notes, and snippets.

@mbranicky
Last active August 29, 2015 14:27
Show Gist options
  • Save mbranicky/a9447db9184e83ae5562 to your computer and use it in GitHub Desktop.
Save mbranicky/a9447db9184e83ae5562 to your computer and use it in GitHub Desktop.
Routing (basic examples)
var app = angular.module('GalleryApp', ['ngRoute']);
app.config(function ($routeProvider) {
$routeProvider
.when('/', {
controller: 'HomeController',
templateUrl: 'views/home.html'
})
.when('/photos/:id', {
controller: 'PhotoController',
templateUrl: 'views/photo.html'
})
.otherwise({
redirectTo: '/'
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment