diff --git a/www/js/controllers/transfer-controllers.js b/www/js/controllers/transfer-controllers.js index cedbccf90a3554a822429829010abc576dac59a0..ad1f64538d1a5adb611abb8f1e6f729b55d01de4 100644 --- a/www/js/controllers/transfer-controllers.js +++ b/www/js/controllers/transfer-controllers.js @@ -393,12 +393,12 @@ function TransferModalController($scope, $q, $translate, $timeout, $filter, $foc return Modals.showWotLookup({enableWallets: true}) .then(function(result){ if (result) { - if (formDataField == 'destPub') { + if (formDataField === 'destPub') { $scope.destUid = result.uid; $scope.destPub = result.uid ? '' : result.pubkey; $scope.formData.destPub = result.pubkey; } - else if (formDataField == 'restPub') { + else if (formDataField === 'restPub') { $scope.restUid = result.uid; $scope.restPub = result.uid ? '' : result.pubkey; $scope.formData.restPub = result.pubkey; diff --git a/www/plugins/es/css/style.css b/www/plugins/es/css/style.css index 2ab89803bc0acc95ae10208ece9a11ea7e24bbf2..a0891f9d58ae85c1d2e9d0c2aa398b00fb9a1a3c 100644 --- a/www/plugins/es/css/style.css +++ b/www/plugins/es/css/style.css @@ -126,6 +126,10 @@ min-height: inherit !important; } +.card.card-comment .card-footer button { + top: 0; +} + /********** Record view **********/