Created
May 5, 2013 01:25
-
-
Save fdaciuk/5519348 to your computer and use it in GitHub Desktop.
Teste Rotas com API History HTML5 no Angular
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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