Merge pull request #193 from gabrielbazan7/feat/nextStepCollapse

next steps card should be collapsable
This commit is contained in:
Gustavo Maximiliano Cortez 2016-09-27 09:56:59 -03:00 committed by GitHub
commit 9f10219691
3 changed files with 50 additions and 29 deletions

View file

@ -180,6 +180,11 @@ angular.module('copayApp.controllers').controller('tabHomeController',
});
};
$scope.shouldHideNextSteps = function() {
$scope.hideNextSteps = !$scope.hideNextSteps;
$ionicScrollDelegate.resize();
};
var listeners = [
$rootScope.$on('bwsEvent', function(e, walletId, type, n) {
var wallet = profileService.getWallet(walletId);

View file

@ -4,6 +4,18 @@
@extend .ion-ios-arrow-right;
}
.icon.nav-item-arrow-down {
color: #666;
font-size: 26px;
@extend .ion-ios-arrow-down;
}
.icon.nav-item-arrow-up {
color: #666;
font-size: 26px;
@extend .ion-ios-arrow-up;
}
.item.item-heading {
font-weight: bold;
}