app realization

This commit is contained in:
2022-02-19 19:01:32 +03:00
commit fa13f3925e
78 changed files with 56266 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
'use strict';
// Declare app level module which depends on views, and core components
angular.module('myApp', [
'core',
'ngRoute',
'myApp.view1',
'myApp.view2',
'myApp.file-service'
]).config(['$locationProvider', '$routeProvider', function ($locationProvider, $routeProvider) {
$locationProvider.hashPrefix('!');
$routeProvider.otherwise({redirectTo: '/view1'});
}]);