Nearing Completion

by thread

HTML

<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
<div ng-app>
  <h2>Class Done</h2>
  <div ng-controller="TodoCtrl">
    {{now}}
  </div>
</div>

CSS

.done-true {
  text-decoration: line-through;
  color: grey;
}

JavaScript

function TodoCtrl($scope) {
  $scope.start = 0;
  $scope.end = 0;
  $scope.now = Date.now();
}