Skip to content

Instantly share code, notes, and snippets.

@xcarpentier
Created October 8, 2014 21:20
Show Gist options
  • Save xcarpentier/c7f68c5384b1aa2c57b1 to your computer and use it in GitHub Desktop.
Save xcarpentier/c7f68c5384b1aa2c57b1 to your computer and use it in GitHub Desktop.
/* A éviter - quand on souhaite utiliser les routes */
// route-config.js
angular
.module('app')
.config(config);
function config ($routeProvider) {
$routeProvider
.when('/avengers', {
templateUrl: 'avengers.html'
});
}
<!-- avengers.html -->
<div ng-controller="Avengers as vm">
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment