Wallet/js/app.js

42 lines
1 KiB
JavaScript
Raw Normal View History

2014-03-14 17:38:27 -03:00
'use strict';
2014-04-30 12:25:33 -03:00
var copay = require('copay');
2014-04-23 18:03:22 -03:00
var copayApp = window.copayApp = angular.module('copay',[
2014-03-19 13:17:18 -03:00
'ngRoute',
'mm.foundation',
2014-03-27 16:43:51 -03:00
'monospaced.qrcode',
'copay.header',
2014-04-25 17:22:51 -03:00
'copay.footer',
'copay.addresses',
'copay.transactions',
'copay.send',
'copay.backup',
2014-04-16 17:50:10 -03:00
'copay.walletFactory',
'copay.signin',
'copay.socket',
2014-04-17 11:46:49 -03:00
'copay.controllerUtils',
2014-04-24 12:01:06 -03:00
'copay.setup',
2014-04-24 18:59:24 -03:00
'copay.directives',
2014-04-25 17:34:24 -03:00
'copay.video',
2014-04-28 16:22:59 -03:00
'copay.import',
2014-04-30 10:52:39 -03:00
'copay.passphrase'
2014-03-14 17:38:27 -03:00
]);
2014-03-25 11:35:04 -03:00
angular.module('copay.header', []);
2014-04-25 17:22:51 -03:00
angular.module('copay.footer', []);
angular.module('copay.addresses', []);
angular.module('copay.transactions', []);
angular.module('copay.send', []);
angular.module('copay.backup', []);
2014-04-16 17:50:10 -03:00
angular.module('copay.walletFactory', []);
2014-04-17 11:46:49 -03:00
angular.module('copay.controllerUtils', []);
angular.module('copay.signin', []);
2014-04-16 17:07:14 -03:00
angular.module('copay.setup', []);
angular.module('copay.socket', []);
2014-04-24 12:01:06 -03:00
angular.module('copay.directives', []);
2014-04-23 21:20:44 -03:00
angular.module('copay.video', []);
2014-04-25 17:34:24 -03:00
angular.module('copay.import', []);
2014-04-30 10:52:39 -03:00
angular.module('copay.passphrase', []);
2014-03-25 11:35:04 -03:00