Skip to content

Instantly share code, notes, and snippets.

@fdaciuk
Created May 5, 2013 01:25
Show Gist options
  • Save fdaciuk/5519348 to your computer and use it in GitHub Desktop.
Save fdaciuk/5519348 to your computer and use it in GitHub Desktop.
Teste Rotas com API History HTML5 no Angular
var app = angular.module('myApp', []);
app.config(['$locationProvider', '$routeProvider', function( $locationProvider, $routeProvider ) {
$locationProvider.html5Mode( true );
$routeProvider
.when('/', { controller : 'controller', templateUrl : 'views/home.html' })
.when('/empresa', { controller : 'controller', templateUrl : 'views/register-company.html' })
.when('/profissional', { controller : 'controller', templateUrl : 'views/register-professional.html' })
.otherwise({ redirectTo : 'views/404.html' });
}]);
var controller = ['$scope', '$http', function( $scope, $http ) {}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment