mirror of
				https://github.com/JuanCanham/HackMyResume.git
				synced 2025-10-30 20:57:26 +00:00 
			
		
		
		
	fix: prevent weird characters in date fields
This commit is contained in:
		
							
								
								
									
										2
									
								
								dist/helpers/handlebars-helpers.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								dist/helpers/handlebars-helpers.js
									
									
									
									
										vendored
									
									
								
							| @@ -33,7 +33,7 @@ Template helper definitions for Handlebars. | |||||||
|     helpers.type = 'handlebars'; |     helpers.type = 'handlebars'; | ||||||
|     wrappedHelpers = _.mapObject(helpers, function(hVal, hKey) { |     wrappedHelpers = _.mapObject(helpers, function(hVal, hKey) { | ||||||
|       if (_.isFunction(hVal)) { |       if (_.isFunction(hVal)) { | ||||||
|         _.wrap(hVal, function(func) { |         return _.wrap(hVal, function(func) { | ||||||
|           var args; |           var args; | ||||||
|           args = Array.prototype.slice.call(arguments); |           args = Array.prototype.slice.call(arguments); | ||||||
|           args.shift(); |           args.shift(); | ||||||
|   | |||||||
| @@ -25,7 +25,7 @@ module.exports = ( theme, opts ) -> | |||||||
|  |  | ||||||
|   wrappedHelpers = _.mapObject helpers, ( hVal, hKey ) -> |   wrappedHelpers = _.mapObject helpers, ( hVal, hKey ) -> | ||||||
|     if _.isFunction hVal |     if _.isFunction hVal | ||||||
|       _.wrap hVal, (func) -> |       return _.wrap hVal, (func) -> | ||||||
|         args = Array.prototype.slice.call arguments |         args = Array.prototype.slice.call arguments | ||||||
|         args.shift() # lose the 1st element (func) |         args.shift() # lose the 1st element (func) | ||||||
|         args.pop() # lose the last element (the Handlebars options hash) |         args.pop() # lose the last element (the Handlebars options hash) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user