Skip to content

Commit

Permalink
add skeleton, some format / style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Zenhäusern committed Apr 19, 2015
1 parent bd443e9 commit 806a2d7
Show file tree
Hide file tree
Showing 10 changed files with 883 additions and 111 deletions.
2 changes: 1 addition & 1 deletion ClientApp/App/controllers.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
var hours = Math.floor(s / 3600);
var minutes = Math.floor((s / 60) % 60);

return (isNegative ? "-" : "") + (hours == 0 ? "" : hours + "h ") + (minutes == 0 ? "" : minutes + " min");
return (isNegative ? "-" : "") + (hours == 0 ? "" : hours + "h ") + minutes + " min";
};
}]);

Expand Down
Loading

0 comments on commit 806a2d7

Please sign in to comment.