Removed debugging code.

This commit is contained in:
Clinton Alexander 2016-07-08 16:17:15 +01:00
parent a147385255
commit 230e230448
2 changed files with 0 additions and 2 deletions

View File

@ -3,7 +3,6 @@
define(['angular', 'services/NodeApi'], (angular, nodeApi) => {
angular.module('irsViewer').controller('HomeController', function HomeController($http, $scope, nodeService) {
let handleHttpFail = (resp) => {
console.log(resp.data)
$scope.httpError = resp.data
}

View File

@ -63,7 +63,6 @@ define(['angular', 'lodash'], (angular, _) => {
// Do some data modification to simplify the model
let deal = resp.data;
deal.fixedLeg.fixedRate.value = (deal.fixedLeg.fixedRate.ratioUnit.value * 100).toString().slice(0, 6);
console.log(deal);
return deal;
});
};