I have a number of seconds count, for example, 713 seconds. How can I implement an Angular.js filter that converts this 713 seconds to HH:mm:ss format? In this case, it shou
I think it is not necessary the custom filter
{{hours}}{{seconds | date:':mm:ss'}} function Scoper($scope) { $scope.seconds = '79000'; $scope.hours = parseInt($scope.seconds / 3600); }