Fixed typo.

This commit is contained in:
Alexis Lahouze 2013-02-07 16:59:18 +01:00
parent 6281e9357b
commit 7d2e3b1e27
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ var EntryController = function($scope, $http, $rootScope, $filter) {
$scope.entryRowClass = function(sold) {
if(sold < $scope.account.authorized_overdraft) {
return 'error';
} else if (esold < 0) {
} else if (sold < 0) {
return 'warning';
}
};