fix angular

This commit is contained in:
Matias Alejo Garcia 2014-04-16 19:14:58 -03:00
commit f8b4f8e4c9
8 changed files with 28 additions and 99 deletions

View file

@ -10,13 +10,12 @@ var Insight = module.exports.Insight = require('./js/models/blockchain/Insight')
var StorageLocalPlain = module.exports.StorageLocalPlain = require('./js/models/storage/LocalPlain');
var StorageLocalEncrypted = module.exports.StorageLocalEncrypted = require('./js/models/storage/LocalEncrypted');
var WalletFactory = require('soop').load('./js/models/core/WalletFactory',{
var WalletFactory = require('soop').load('./js/models/core/WalletFactory.js',{
Network: WebRTC,
Blockchain: Insight,
Storage: StorageLocalPlain,
});
module.exports.WalletFactory = WalletFactory;
//var walletFactory = new WalletFactory(config);
module.exports.API = require('./API');