1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-05-02 20:37:08 +01:00

fix: prevent weird characters in date fields

This commit is contained in:
hacksalot
2018-02-04 01:13:02 -05:00
parent 00067d012a
commit 55196c2766
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ Template helper definitions for Handlebars.
helpers.type = 'handlebars';
wrappedHelpers = _.mapObject(helpers, function(hVal, hKey) {
if (_.isFunction(hVal)) {
_.wrap(hVal, function(func) {
return _.wrap(hVal, function(func) {
var args;
args = Array.prototype.slice.call(arguments);
args.shift();