This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
angular.module('filters', []) | |
/* | |
* Creates a time that is the right hour relative to Now | |
* for displaying a number (or fraction of hours) as a time. | |
* (4) => 4:00 | |
* (3.17) => 3:10 | |
* (67.291667) => 67:18 (rounds up at .5 of a minute) | |
* Usage: {{ job.actualHoursSpent | decToHour | date: 'H:mm' }} | |
* Because it adds on to Angular's built in date filter as above |