Created
November 17, 2014 19:46
-
-
Save smykes/2ed0b3fe81af6251af48 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'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