remove sound

This commit is contained in:
Ryan X. Charles 2014-06-09 10:41:55 -07:00
parent 79273f4555
commit e0baf8bafb
1 changed files with 2 additions and 2 deletions

View File

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