Skip to content

Instantly share code, notes, and snippets.

@PirosB3
Created November 5, 2012 22:56
Show Gist options
  • Save PirosB3/4020959 to your computer and use it in GitHub Desktop.
Save PirosB3/4020959 to your computer and use it in GitHub Desktop.
angular.module('TweetYourMep', []).
config(['$routeProvider', function($routeProvider) {
$routeProvider.when('/name/:name/country/:country/localParty/:localParty/faction/:faction', { templateUrl: "/partials/main.html", controller: RootView} );
$routeProvider.otherwise({redirectTo: '/name/all/country/all/localParty/all/faction/all'});
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment