From d658a069cd0cac1e2057d6ce010e7ba5d07e9103 Mon Sep 17 00:00:00 2001 From: hacksalot Date: Tue, 5 Jan 2016 04:59:26 -0500 Subject: [PATCH] Rename {{hasSection}} helper to {{section}}. --- src/eng/generic-helpers.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/eng/generic-helpers.js b/src/eng/generic-helpers.js index 62bce63..2113cea 100644 --- a/src/eng/generic-helpers.js +++ b/src/eng/generic-helpers.js @@ -32,9 +32,9 @@ Generic template helper definitions for HackMyResume / FluentCV. /** Return true if the section is present on the resume and has at least one element. - @method hasSection + @method section */ - hasSection: function( title, options ) { + section: function( title, options ) { title = title.trim().toLowerCase(); var obj = LO.get( this.r, title ); if( _.isArray( obj ) ) {