move all files to root path
This commit is contained in:
parent
65cd91653d
commit
abee376568
34 changed files with 29539 additions and 1 deletions
6
js/app.js
Normal file
6
js/app.js
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('cosign',[
|
||||
'ngRoute',
|
||||
'ui.bootstrap'
|
||||
]);
|
||||
24
js/config.js
Normal file
24
js/config.js
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
'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('!');
|
||||
});
|
||||
1
js/directives.js
Normal file
1
js/directives.js
Normal file
|
|
@ -0,0 +1 @@
|
|||
'use strict';
|
||||
1
js/filters.js
Normal file
1
js/filters.js
Normal file
|
|
@ -0,0 +1 @@
|
|||
'use strict';
|
||||
6
js/init.js
Normal file
6
js/init.js
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
angular.element(document).ready(function() {
|
||||
// Init the app
|
||||
angular.bootstrap(document, ['cosign']);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue