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

Prosecute FCVD updates.

This commit is contained in:
devlinjd 2015-12-16 11:25:50 -05:00
parent 8361cf9960
commit 1603a4bc73
2 changed files with 7 additions and 1 deletions

View File

@ -92,6 +92,7 @@
"sets": [
{
"name": "",
"level": "",
"skills": []
}
],

View File

@ -219,6 +219,7 @@ Definition of the FRESHResume class.
FreshResume.prototype.count = function( obj ) {
if( !obj ) return 0;
if( obj.history ) return obj.history.length;
if( obj.sets ) return obj.sets.length;
return obj.length || 0;
}
@ -237,10 +238,14 @@ Definition of the FRESHResume class.
var defSheet = FreshResume.default();
var newObject = defSheet[moniker].history ?
$.extend( true, {}, defSheet[ moniker ].history[0] ) :
$.extend( true, {}, defSheet[ moniker ][0] );
(moniker === 'skills' ?
$.extend( true, {}, defSheet.skills.sets[0] ) :
$.extend( true, {}, defSheet[ moniker ][0] ));
this[ moniker ] = this[ moniker ] || [];
if( this[ moniker ].history )
this[ moniker ].history.push( newObject );
else if( moniker === 'skills' )
this.skills.sets.push( newObject );
else
this[ moniker ].push( newObject );
return newObject;