Skip to content

Commit

Permalink
Removed Error in Third Version
Browse files Browse the repository at this point in the history
  • Loading branch information
WiednerF committed Jan 13, 2017
1 parent 4a11425 commit c328763
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export class GraphHistogramComponent implements OnChanges, AfterViewInit {
private arrayMax(array) {
return array.reduce(function(a, b) {
return Math.max(a, b);
});
},0);
}

/**
Expand All @@ -157,7 +157,7 @@ export class GraphHistogramComponent implements OnChanges, AfterViewInit {
private arrayMin(array) {
return array.reduce(function(a, b) {
return Math.min(a, b);
});
},100);
}

/**
Expand Down

0 comments on commit c328763

Please sign in to comment.