mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-15 15:09:55 +00:00
16 lines
379 B
JavaScript
16 lines
379 B
JavaScript
'use strict';
|
|
|
|
// Declare app level module which depends on views, and components
|
|
angular.module('myApp', [
|
|
'ngRoute',
|
|
'myApp.home',
|
|
'myApp.about',
|
|
'myApp.settings',
|
|
'myApp.version'
|
|
]).
|
|
config(['$locationProvider', '$routeProvider', function($locationProvider, $routeProvider) {
|
|
$locationProvider.hashPrefix('!');
|
|
|
|
$routeProvider.otherwise({redirectTo: '/'});
|
|
}]);
|