@colkito's suggestion

This commit is contained in:
Gustavo Cortez 2014-05-21 10:35:47 -03:00
parent 0b75244579
commit 08340bca0c
1 changed files with 2 additions and 1 deletions

View File

@ -20,6 +20,8 @@ angular.module('copay.header').controller('HeaderController',
'icon': 'fi-archive',
'link': '#/backup'
}];
var beep = new Audio('sound/transaction.mp3');
// Initialize alert notification (not show when init wallet)
$rootScope.txAlertCount = 0;
@ -41,7 +43,6 @@ angular.module('copay.header').controller('HeaderController',
}
if (currentAddr) {
$notification.funds('Received fund', currentAddr, receivedFund);
var beep = new Audio('sound/transaction.mp3');
beep.play();
}
}