From 497a93991e519e808fb760de6bf600e92aa73f32 Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Mon, 18 Aug 2014 13:13:22 -0400 Subject: [PATCH] remove alerts --- js/models/core/PublicKeyRing.js | 1 - js/models/core/Wallet.js | 3 --- 2 files changed, 4 deletions(-) diff --git a/js/models/core/PublicKeyRing.js b/js/models/core/PublicKeyRing.js index 360ebd491..b86f18277 100644 --- a/js/models/core/PublicKeyRing.js +++ b/js/models/core/PublicKeyRing.js @@ -377,7 +377,6 @@ PublicKeyRing.prototype._checkInPKR = function(inPKR, ignoreId) { PublicKeyRing.prototype._mergePubkeys = function(inPKR) { - alert('merge pubkeys'); var self = this; var hasChanged = false; diff --git a/js/models/core/Wallet.js b/js/models/core/Wallet.js index e61b4d699..7e4172e5c 100644 --- a/js/models/core/Wallet.js +++ b/js/models/core/Wallet.js @@ -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':