1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-05-10 07:47:07 +01:00
This commit is contained in:
hacksalot
2016-01-20 21:43:11 -05:00
parent f77cced7f3
commit 984ae95576
4 changed files with 17 additions and 21 deletions

View File

@ -87,8 +87,6 @@ Output routines for HackMyResume.
break;
case HME.afterTheme:
this.theme = evt.theme;
// this.opts.debug && L( M2C(this.msgs.beforeTheme.msg, 'green'), evt.theme );
break;
case HME.beforeMerge:
@ -107,9 +105,10 @@ Output routines for HackMyResume.
break;
case HME.applyTheme:
var numFormats = Object.keys( this.theme.formats ).length;
this.theme = evt.theme;
var numFormats = Object.keys( evt.theme.formats ).length;
L( M2C(this.msgs.applyTheme.msg, 'green'),
this.theme.name.toUpperCase(),
evt.theme.name.toUpperCase(),
numFormats, ( numFormats === 1 ? '' : 's') );
break;