diff --git a/public/views/tab-home.html b/public/views/tab-home.html index 24cb50598..1f7a26f2b 100644 --- a/public/views/tab-home.html +++ b/public/views/tab-home.html @@ -116,37 +116,41 @@
-
+
Next steps + + +
+
+ + +
+
+ Create a bitcoin wallet + +
+ + +
+
+ Add BitPay Card + +
+ + +
+
+ Buy or Sell Bitcoin + +
+ + +
+
+ Buy Amazon.com Gift Card + +
- - -
-
- Create a bitcoin wallet - -
- - -
-
- Add BitPay Card - -
- - -
-
- Buy or Sell Bitcoin - -
- - -
-
- Buy Amazon.com Gift Card - -

diff --git a/src/js/controllers/tab-home.js b/src/js/controllers/tab-home.js index 67f93c1fe..f58bb7ca0 100644 --- a/src/js/controllers/tab-home.js +++ b/src/js/controllers/tab-home.js @@ -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); diff --git a/src/sass/common.scss b/src/sass/common.scss index 86e619887..5be328775 100644 --- a/src/sass/common.scss +++ b/src/sass/common.scss @@ -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; }