1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-06-30 23:40:05 +01:00

Fix: formatDate helper references the moment method, not the momentDate object

This commit is contained in:
Josh Janusch 2016-01-01 18:05:33 -05:00 committed by hacksalot
parent 3d1f589bc1
commit 4f9207a868

View File

@ -30,10 +30,7 @@ Generic template helper definitions for HackMyResume / FluentCV.
formatDate: function(datetime, format, fallback) {
if (moment) {
var momentDate = moment( datetime );
if (momentDate.isValid()) {
return moment.format(format);
}
if (momentDate.isValid()) return momentDate.format(format);
}
return datetime || (typeof fallback == 'string' ? fallback : (fallback === true ? 'Present' : null));