move all files to root path

This commit is contained in:
Mario Colque 2014-03-21 14:21:13 -03:00
commit abee376568
34 changed files with 29539 additions and 1 deletions

View file

@ -1,6 +0,0 @@
'use strict';
angular.module('cosign',[
'ngRoute',
'ui.bootstrap'
]);

View file

@ -1,24 +0,0 @@
'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('!');
});

View file

@ -1 +0,0 @@
'use strict';

View file

@ -1 +0,0 @@
'use strict';

View file

@ -1,6 +0,0 @@
'use strict';
angular.element(document).ready(function() {
// Init the app
angular.bootstrap(document, ['cosign']);
});