Merge pull request #2346 from matiaspando/bug/signout-android-wp

Add an explicit call to a controller when signing out
This commit is contained in:
Gustavo Maximiliano Cortez 2015-01-23 11:07:08 -03:00
commit 4f999d5a62
3 changed files with 11 additions and 1 deletions

View File

@ -0,0 +1,5 @@
angular.module('copayApp.controllers').controller('signOutController', function(identityService) {
identityService.signout();
});

View File

@ -13,7 +13,7 @@ angular.element(document).ready(function() {
document.addEventListener('pause', function() {
if (!window.ignoreMobilePause) {
window.location = '#!';
window.location = '#!/signout';
}
}, false);

View File

@ -106,6 +106,11 @@ angular
.when('/add', {
templateUrl: 'views/add.html',
logged: true
})
.when('/signout', {
template: " ", // just fire controller
controller: 'signOutController',
logged: true
});
if (config.developmentFeatures) {