Merge branch 'master' into feature/socket-io-support
Fixed conflicts on: index.html js/app.js
This commit is contained in:
commit
7d52f8487b
39 changed files with 1459 additions and 583 deletions
10
js/app.js
10
js/app.js
|
|
@ -9,10 +9,11 @@ angular.module('copay',[
|
|||
'copay.transactions',
|
||||
'copay.send',
|
||||
'copay.backup',
|
||||
'copay.network',
|
||||
'copay.walletFactory',
|
||||
'copay.signin',
|
||||
'copay.peer',
|
||||
'copay.socket'
|
||||
'copay.socket',
|
||||
'copay.setup',
|
||||
'copay.peer'
|
||||
]);
|
||||
|
||||
angular.module('copay.header', []);
|
||||
|
|
@ -20,8 +21,9 @@ angular.module('copay.home', []);
|
|||
angular.module('copay.transactions', []);
|
||||
angular.module('copay.send', []);
|
||||
angular.module('copay.backup', []);
|
||||
angular.module('copay.network', []);
|
||||
angular.module('copay.walletFactory', []);
|
||||
angular.module('copay.signin', []);
|
||||
angular.module('copay.setup', []);
|
||||
angular.module('copay.peer', []);
|
||||
angular.module('copay.socket', []);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue