Wallet/js/app.js
Ryan X. Charles 7176e49509 rename cosign -> copay throughout code
Also, "cosigners" becomes "copayers"
2014-03-28 14:12:56 -04:00

25 lines
534 B
JavaScript

'use strict';
angular.module('copay',[
'ngRoute',
'mm.foundation',
'monospaced.qrcode',
'copay.header',
'copay.home',
'copay.transactions',
'copay.send',
'copay.backup',
'copay.network',
'copay.signin',
'copay.join'
]);
angular.module('copay.header', []);
angular.module('copay.home', []);
angular.module('copay.transactions', []);
angular.module('copay.send', []);
angular.module('copay.backup', []);
angular.module('copay.network', []);
angular.module('copay.signin', []);
angular.module('copay.join', []);