Skip to content

Commit

Permalink
Displays the atomic diff even when it's negative #37
Browse files Browse the repository at this point in the history
  • Loading branch information
MathieuNls committed Jul 19, 2016
1 parent 49f3bd5 commit 57efeb8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/pages/time/time.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ export class TimePage extends ClockComponent{
addSign(i:number):string{
if(i >= 0){
return "+" + i;
}else{
return i.toString();
}
}

Expand Down

0 comments on commit 57efeb8

Please sign in to comment.