Merge pull request #2696 from bechi/sidebar-color1

change color for sidebar
This commit is contained in:
Gustavo Maximiliano Cortez 2015-05-11 14:18:14 -03:00
commit e973d4cfa0
7 changed files with 26 additions and 29 deletions

View file

@ -26,15 +26,15 @@ angular.module('copayApp.services')
if (!last) return false;
// rules...
if (last.type === 'NewTxProposal'
if (last.type === 'NewTxProposal'
&& notificationData.type === 'TxProposalAcceptedBy')
return true;
if (last.type === 'TxProposalFinallyAccepted'
if (last.type === 'TxProposalFinallyAccepted'
&& notificationData.type === 'NewOutgoingTx')
return true;
if (last.type === 'TxProposalRejectedBy'
if (last.type === 'TxProposalRejectedBy'
&& notificationData.type === 'TxProposalFinallyRejected')
return true;