<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8"/>
    <script src="http://siddii.github.io/angular-timer/assets/js/angular-timer-bower.js"></script>
    <script src="http://siddii.github.io/angular-timer/assets/js/angular-timer-all.min.js"></script>
    <script type="text/javascript">
      angular.module('timer').controller('TimerWithEndTime', ['$scope', function ($scope){
          $scope.endTimes =  [1551628000000, 1651629000000, 1751630000000];
      }]);
      
    </script>
</head>
<body ng-app="timer">
<h3>Timer countdown inside ng-repeat</h3>
<div ng-controller="TimerWithEndTime">
   <div ng-repeat="endTime in endTimes">
     <timer end-time="endTime">{{days}} days, {{hours}} hours, {{minutes}} minutes, {{seconds}} seconds.</timer>  
   </div>
</div>

</body>
// Code goes here

/* Styles go here */