Merge branch 'master' into feature/01-alert-txs

This commit is contained in:
Gustavo Cortez 2014-05-20 14:45:32 -03:00
commit 3f8612ee0c
7 changed files with 22 additions and 13 deletions

View file

@ -19,7 +19,7 @@ angular.module('copay.controllerUtils')
video.close();
// Clear rootScope
for (var i in $rootScope) {
if (i.charAt(0) != '$') {
if (i.charAt(0) != '$' && i != 'flashMessage') {
delete $rootScope[i];
}
}