mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 09:56:22 +00:00
Fix: formatDate helper references the moment method, not the momentDate object
This commit is contained in:
parent
3d1f589bc1
commit
4f9207a868
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user