Skip to content

Instantly share code, notes, and snippets.

@syrxw
Created June 6, 2015 15:13
Show Gist options
  • Save syrxw/d6319d15550c3ade86f2 to your computer and use it in GitHub Desktop.
Save syrxw/d6319d15550c3ade86f2 to your computer and use it in GitHub Desktop.
angular.module('app', ['ngRoute'])
.config(function($routeProvider, $locationProvider) {
$locationProvider.html5Mode(true);
$routeProvider
.when('/', {
templateUrl: myLocalized.partials + 'main.html',
controller: 'Main'
});
})
.controller('Main', function() {
console.log('Main file loaded.');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment