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

Fix jsHint error.

This commit is contained in:
hacksalot 2016-01-08 12:24:23 -05:00
parent cba29511bc
commit 1c93932737

View File

@ -130,17 +130,17 @@ Employment gap analysis for HackMyResume.
// date.If so, set the end date to the present date and compute the
// duration normally.
if( coverage.overlaps.length ) {
var l = _.last( coverage.overlaps );
if( l && !l.end ) {
l.end = moment();
l.duration = l.end.diff( l.start, 'days' );
var o = _.last( coverage.overlaps );
if( o && !o.end ) {
o.end = moment();
o.duration = o.end.diff( o.start, 'days' );
}
}
if( coverage.gaps.length ) {
var l = _.last( coverage.gaps );
if( l && !l.end ) {
l.end = moment();
l.duration = l.end.diff( l.start, 'days' );
var g = _.last( coverage.gaps );
if( g && !g.end ) {
g.end = moment();
g.duration = g.end.diff( g.start, 'days' );
}
}