fix(feedback): more visual and design improvements on mobile

This commit is contained in:
Jason Dreyzehner 2016-11-15 17:38:40 -05:00
parent 30c2b0626d
commit dcbdb31ab3
5 changed files with 25 additions and 9 deletions

View File

@ -32,6 +32,7 @@ angular.module('copayApp.controllers').controller('completeController', function
$scope.$on("$ionicView.beforeEnter", function(event, data) {
if(window.StatusBar){
$log.debug('Hiding status bar...');
StatusBar.hide();
}
@ -83,8 +84,9 @@ angular.module('copayApp.controllers').controller('completeController', function
}, 100);
});
$scope.$on("$ionicView.afterLeave", function(event, data) {
$scope.$on("$ionicView.afterLeave", function() {
if(window.StatusBar){
$log.debug('Showing status bar...');
StatusBar.show();
}
});

View File

@ -29,6 +29,20 @@ angular.module('copayApp.controllers').controller('rateAppController', function(
});
};
$scope.$on("$ionicView.beforeEnter", function() {
if(window.StatusBar){
$log.debug('Hiding status bar...');
StatusBar.hide();
}
});
$scope.$on("$ionicView.afterLeave", function() {
if(window.StatusBar){
$log.debug('Showing status bar...');
StatusBar.show();
}
});
$scope.sendFeedback = function() {
$state.go('feedback.send', {
score: $scope.score

View File

@ -4,6 +4,9 @@
margin-top: 15px;
color: #667;
}
.skip-rating {
margin-right: 15px;
}
.icon-svg > img {
width: 80px;
height: 80px;
@ -13,7 +16,7 @@
font-size: 20px;
font-weight: bold;
color: $dark-gray;
margin: 40px 50px 10px;
margin: 80px 50px 10px;
text-align: center;
}
.subtitle {
@ -25,9 +28,6 @@
width: 100%;
position: absolute;
background-color: $subtle-gray;
.button {
margin-top: 40px;
margin-bottom: 30px;
}
padding: 50px 0;
}
}

View File

@ -1,6 +1,6 @@
<ion-view id="rate-app">
<ion-content scroll="false">
<a class="right skip" ng-click="skip()">Skip</a>
<a class="right skip skip-rating" ng-click="skip()">Not now</a>
<div class="title">
<span translate>Thank you!</span>
<div>
@ -10,7 +10,7 @@
</div>
</div>
<div class="subtitle text-center">
<span translate>5-star ratings help us get BitPay into more hands, and more users means more resoucers can be committed to the app!</span>
<span translate>5-star ratings help us get BitPay into more hands, and more users means more resources can be committed to the app!</span>
</div>
<div class="subtitle text-center">
<span class="text-bold" translate>Would you be willing to rate BitPay in the app store?</span>

View File

@ -31,7 +31,7 @@
<div class="comment">
<span translate>{{comment}}</span>
</div>
<textarea class="user-feedback" ng-model="feedback.value" placeholder="Your ideas, feedback, or comments"></textarea>
<textarea class="user-feedback" ng-model="feedback.value" placeholder="Your ideas, feedback, or comments" autofocus></textarea>
<button ng-disabled="!feedback.value" type="submit" class="button button-full button-primary" ng-click="sendFeedback(feedback.value, false)" translate>
Send
</button>