1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-07-07 02:31:07 +01:00

Move helpers to /helpers.

This commit is contained in:
hacksalot
2016-01-09 22:13:29 -05:00
parent d7cfc76636
commit 0829800b65
5 changed files with 3 additions and 3 deletions

View File

@ -0,0 +1,25 @@
/**
Template helper definitions for Handlebars.
@license MIT. Copyright (c) 2015 James Devlin / FluentDesk.
@module handlebars-helpers.js
*/
(function() {
var HANDLEBARS = require('handlebars')
, _ = require('underscore')
, helpers = require('./generic-helpers');
/**
Register useful Handlebars helpers.
@method registerHelpers
*/
module.exports = function( theme ) {
helpers.theme = theme;
HANDLEBARS.registerHelper( helpers );
};
}());