2014-03-14 17:38:27 -03:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
angular.module('cosign',[
|
2014-03-19 13:17:18 -03:00
|
|
|
'ngRoute',
|
2014-03-27 12:07:10 -03:00
|
|
|
'mm.foundation',
|
2014-03-27 16:43:51 -03:00
|
|
|
'monospaced.qrcode',
|
2014-03-27 16:31:42 -03:00
|
|
|
'cosign.header',
|
2014-03-26 09:18:42 -03:00
|
|
|
'cosign.home',
|
|
|
|
|
'cosign.transactions',
|
|
|
|
|
'cosign.send',
|
2014-03-26 17:56:11 -03:00
|
|
|
'cosign.backup',
|
2014-03-27 16:43:51 -03:00
|
|
|
'cosign.network',
|
2014-03-27 16:31:42 -03:00
|
|
|
'cosign.signin',
|
2014-03-27 16:43:51 -03:00
|
|
|
'cosign.join'
|
2014-03-14 17:38:27 -03:00
|
|
|
]);
|
2014-03-25 11:35:04 -03:00
|
|
|
|
|
|
|
|
angular.module('cosign.header', []);
|
2014-03-26 09:18:42 -03:00
|
|
|
angular.module('cosign.home', []);
|
|
|
|
|
angular.module('cosign.transactions', []);
|
|
|
|
|
angular.module('cosign.send', []);
|
|
|
|
|
angular.module('cosign.backup', []);
|
2014-03-27 16:43:51 -03:00
|
|
|
angular.module('cosign.network', []);
|
2014-03-27 16:31:42 -03:00
|
|
|
angular.module('cosign.signin', []);
|
|
|
|
|
angular.module('cosign.join', []);
|
2014-03-25 11:35:04 -03:00
|
|
|
|