added Passphrase model
This commit is contained in:
parent
973e65f375
commit
62b95ac122
4 changed files with 8 additions and 1 deletions
2
copay.js
2
copay.js
|
|
@ -3,6 +3,8 @@
|
|||
module.exports.PublicKeyRing = require('./js/models/core/PublicKeyRing');
|
||||
module.exports.TxProposals = require('./js/models/core/TxProposals');
|
||||
module.exports.PrivateKey = require('./js/models/core/PrivateKey');
|
||||
module.exports.Passphrase = require('./js/models/core/Passphrase');
|
||||
|
||||
|
||||
// components
|
||||
var WebRTC = module.exports.WebRTC = require('./js/models/network/WebRTC');
|
||||
|
|
|
|||
|
|
@ -589,6 +589,7 @@
|
|||
<script src="js/services/video.js"></script>
|
||||
<script src="js/services/walletFactory.js"></script>
|
||||
<script src="js/services/controllerUtils.js"></script>
|
||||
<script src="js/services/passphrase.js"></script>
|
||||
|
||||
<script src="js/controllers/header.js"></script>
|
||||
<script src="js/controllers/footer.js"></script>
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@ var copayApp = window.copayApp = angular.module('copay',[
|
|||
'copay.video',
|
||||
'copay.import',
|
||||
'copay.password',
|
||||
'copay.passphrase'
|
||||
]);
|
||||
|
||||
angular.module('copay.header', []);
|
||||
|
|
@ -39,4 +40,5 @@ angular.module('copay.directives', []);
|
|||
angular.module('copay.video', []);
|
||||
angular.module('copay.import', []);
|
||||
angular.module('copay.password', []);
|
||||
angular.module('copay.passphrase', []);
|
||||
|
||||
|
|
|
|||
|
|
@ -68,7 +68,9 @@ var createBundle = function(opts) {
|
|||
b.require('./js/models/core/PublicKeyRing', {
|
||||
expose: '../js/models/core/PublicKeyRing'
|
||||
});
|
||||
|
||||
b.require('./js/models/core/Passphrase', {
|
||||
expose: '../js/models/core/Passphrase'
|
||||
});
|
||||
|
||||
if (!opts.dontminify) {
|
||||
b.transform({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue