Wallet/js/config.js
2014-03-21 14:21:13 -03:00

24 lines
439 B
JavaScript

'use strict';
//Setting up route
angular
.module('cosign')
.config(function($routeProvider) {
$routeProvider
.when('/signin', {
templateUrl: 'signin.html'
})
.when('/home', {
templateUrl: 'home.html'
});
});
//Setting HTML5 Location Mode
angular
.module('cosign')
.config(function($locationProvider) {
$locationProvider
.html5Mode(false);
//.hashPrefix('!');
});