Enable ngSwipe on mobile only. Disable ngSwipe if no identity loaded.

This commit is contained in:
Gustavo Maximiliano Cortez 2014-12-11 17:04:26 -03:00
commit b9c51e1c4a
2 changed files with 10 additions and 4 deletions

View file

@ -27,7 +27,9 @@ angular.module('copayApp.services').factory('go', function($window, $rootScope,
hideSidebars();
}
else {
elem.addClass('move-right');
if ($rootScope.iden && !$rootScope.hideNavigation) {
elem.addClass('move-right');
}
}
}
else {
@ -35,7 +37,9 @@ angular.module('copayApp.services').factory('go', function($window, $rootScope,
hideSidebars();
}
else {
elem.addClass('move-left');
if ($rootScope.iden && $rootScope.iden.listWallets().length >1) {
elem.addClass('move-left');
}
}
}
};