Skip to content

Commit

Permalink
- Fix JS hint
Browse files Browse the repository at this point in the history
  • Loading branch information
blavenie committed Jul 4, 2016
1 parent fba82cd commit 310db73
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion www/js/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ angular.module("cesium.config", [])
"TIMEOUT": 4000,
"DEBUG": false,
"VERSION": "0.1.25",
"BUILD_DATE": "2016-07-04T12:20:29.811Z"
"BUILD_DATE": "2016-07-04T12:37:12.038Z"
})

;
4 changes: 2 additions & 2 deletions www/js/controllers/wallet-controllers.js
Original file line number Diff line number Diff line change
Expand Up @@ -375,12 +375,12 @@ function WalletTxErrorController($scope, $rootScope, $ionicPopup, $timeout, UIUt
$scope.filterPositive = function(prop){
return function(item){
return item[prop] > 0;
}
};
};

$scope.filterNegative = function(prop){
return function(item){
return item[prop] < 0;
}
};
};
}

0 comments on commit 310db73

Please sign in to comment.