1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-07-05 09:30:04 +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
parent 889bd4bfc5
commit dd2148bb92

View File

@ -28,10 +28,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));