remove alerts

This commit is contained in:
Manuel Araoz 2014-08-18 13:13:22 -04:00
parent 652726dbe9
commit 497a93991e
2 changed files with 0 additions and 4 deletions

View File

@ -377,7 +377,6 @@ PublicKeyRing.prototype._checkInPKR = function(inPKR, ignoreId) {
PublicKeyRing.prototype._mergePubkeys = function(inPKR) {
alert('merge pubkeys');
var self = this;
var hasChanged = false;

View File

@ -318,8 +318,6 @@ Wallet.prototype._handleAddressBook = function(senderId, data, isInbound) {
Wallet.prototype._handleData = function(senderId, data, isInbound) {
alert(JSON.stringify(data));
if (data.type !== 'walletId' && this.id !== data.walletId) {
this.emit('badMessage', senderId);
this.log('badMessage FROM:', senderId);
@ -330,7 +328,6 @@ Wallet.prototype._handleData = function(senderId, data, isInbound) {
switch (data.type) {
// This handler is repeaded on WalletFactory (#join). TODO
case 'walletId':
alert('walletID received');
this.sendWalletReady(senderId);
break;
case 'walletReady':