send flow
This commit is contained in:
parent
8e031a83ad
commit
f3dd69b510
197 changed files with 205673 additions and 8 deletions
|
|
@ -0,0 +1,5 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('cosign',[
|
||||
'ngRoute',
|
||||
]);
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
'use strict';
|
||||
|
||||
//Setting up route
|
||||
angular
|
||||
.module('cosign')
|
||||
.config(function($routeProvider) {
|
||||
$routeProvider.
|
||||
when('signin', {
|
||||
templateUrl: '/views/signin.html',
|
||||
title: 'Signin'
|
||||
})
|
||||
.otherwise({
|
||||
templateUrl: '/views/404.html',
|
||||
title: 'Error'
|
||||
});
|
||||
});
|
||||
|
||||
//Setting HTML5 Location Mode
|
||||
angular
|
||||
.module('insight')
|
||||
.config(function($locationProvider) {
|
||||
$locationProvider.html5Mode(true);
|
||||
$locationProvider.hashPrefix('!');
|
||||
});
|
||||
14605
browser-extensions/chrome/copay-chrome-extension/js/copay.js
Normal file
14605
browser-extensions/chrome/copay-chrome-extension/js/copay.js
Normal file
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1 @@
|
|||
'use strict';
|
||||
|
|
@ -0,0 +1 @@
|
|||
'use strict';
|
||||
|
|
@ -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