mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-24 07:26:47 +00:00
14 lines
364 B
JavaScript
14 lines
364 B
JavaScript
'use strict';
|
|
|
|
// Declare app level module which depends on views, and components
|
|
angular.module('gocryptoweb', [
|
|
'ngRoute',
|
|
'gocryptoweb.view1',
|
|
'gocryptoweb.view2'
|
|
]).
|
|
config(['$locationProvider', '$routeProvider', function($locationProvider, $routeProvider) {
|
|
$locationProvider.hashPrefix('!');
|
|
|
|
$routeProvider.otherwise({redirectTo: '/view1'});
|
|
}]);
|