Skip to content

Instantly share code, notes, and snippets.

@xcarpentier
Last active August 29, 2015 14:07
Show Gist options
  • Save xcarpentier/2e824a09f25da654af32 to your computer and use it in GitHub Desktop.
Save xcarpentier/2e824a09f25da654af32 to your computer and use it in GitHub Desktop.
/* Recommandé */
// route-config.js
angular
.module('app')
.config(config);
function config ($routeProvider) {
$routeProvider
.when('/avengers', {
templateUrl: 'avengers.html',
controller: 'Avengers',
controllerAs: 'vm'
});
}
<!-- avengers.html -->
<div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment