working on top button

This commit is contained in:
Manuel Araoz 2014-06-19 15:55:04 -03:00
parent 9125e8cf7f
commit 29b98b6adf
2 changed files with 4 additions and 0 deletions

View File

@ -646,6 +646,7 @@
<div class="row collapse">
<label for="amount">Amount
<small ng-hide="!sendForm.amount.$pristine">required</small>
<i class="fi-arrow-up" ng-click="topAmount()"></i>
<small class="is-valid" ng-show="!sendForm.amount.$invalid && !sendForm.amount.$pristine">Valid</small>
<small class="has-error" ng-show="sendForm.amount.$invalid && !sendForm.amount.$pristine && !notEnoughAmount">
Not valid

View File

@ -254,4 +254,7 @@ angular.module('copayApp.controllers').controller('SendController',
});
};
$scope.topAmount = function() {
alert('hello');
};
});