Create a Compatibility namespace

This commit is contained in:
Esteban Ordano 2014-10-27 22:15:23 -03:00
commit 1b0f6836dc
14 changed files with 257 additions and 275 deletions

View file

@ -78,9 +78,6 @@ var createBundle = function(opts) {
b.require('./js/models/PublicKeyRing', {
expose: '../js/models/PublicKeyRing'
});
b.require('./js/models/Passphrase', {
expose: '../js/models/Passphrase'
});
b.require('./js/models/HDPath', {
expose: '../js/models/HDPath'
});

View file

@ -1,6 +1,6 @@
#!/bin/bash
cd ./lib/sjcl && \
./configure &&\
./configure --with-sha1 &&\
make && cp -v sjcl.js .. && echo "Done!" || echo " ## Please run $0 on copay root directory"