Skip to content

Instantly share code, notes, and snippets.

@sfroestl
Created September 26, 2014 07:48
Show Gist options
  • Save sfroestl/d2ef703e286ae47b0a8a to your computer and use it in GitHub Desktop.
Save sfroestl/d2ef703e286ae47b0a8a to your computer and use it in GitHub Desktop.
angular module config with ngRouter and
angular.module('app', ['ngRoute'])
.config(function ($routeProvider) {
$routeProvider
.when('/route', {
templateUrl: 'my-tpl.html',
controller: 'MyCtrl',
resolve: { /*resolve*/ }
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment