Merge pull request #616 from ryanxcharles/feature/remove-sound

remove sound
This commit is contained in:
Ryan X. Charles 2014-06-09 15:04:13 -07:00
commit deb3ac92d6
1 changed files with 2 additions and 2 deletions

View File

@ -62,9 +62,9 @@ angular.module('copayApp.controllers').controller('HeaderController',
} }
} }
if (currentAddr) { if (currentAddr) {
var beep = new Audio('sound/transaction.mp3'); //var beep = new Audio('sound/transaction.mp3');
$notification.funds('Received fund', currentAddr, receivedFund); $notification.funds('Received fund', currentAddr, receivedFund);
beep.play(); //beep.play();
} }
} }
}); });