Skip to content

Instantly share code, notes, and snippets.

@smykes
Created November 17, 2014 19:46
Show Gist options
  • Save smykes/2ed0b3fe81af6251af48 to your computer and use it in GitHub Desktop.
Save smykes/2ed0b3fe81af6251af48 to your computer and use it in GitHub Desktop.
'use strict';
angular
.module('gitHubIssueViewerApp', [
'ngRoute',
'ngSanitize',
'markdown'
])
.config(function($routeProvider) {
$routeProvider
.when('/', {
templateUrl: 'views/issues.html'
})
.when('/issues', {
templateUrl: 'views/issues.html'
}).
when('/issues/:issueNumber', {
templateUrl: 'views/issue.html'
}).
when('/user/:userName', {
templateUrl: 'views/user.html'
}).
otherwise({
redirectTo: '/'
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment