diff options
author | Tommy Messbauer <tommy@vast.com> | 2012-08-29 15:07:15 -0500 |
---|---|---|
committer | Tommy Messbauer <tommy@vast.com> | 2012-08-29 15:07:15 -0500 |
commit | eccc7c35ca3221b0a168485d5c323d6054958a3e (patch) | |
tree | 798eef005c0518bfdf018816c1b7c2ab0d20dbe2 /lib/handlebars/compiler/compiler.js | |
parent | 7c4813b417eaf4b9aab597dcd618857b8419f301 (diff) | |
download | handlebars.js-eccc7c35ca3221b0a168485d5c323d6054958a3e.zip handlebars.js-eccc7c35ca3221b0a168485d5c323d6054958a3e.tar.gz handlebars.js-eccc7c35ca3221b0a168485d5c323d6054958a3e.tar.bz2 |
Finished factory pattern
Diffstat (limited to 'lib/handlebars/compiler/compiler.js')
-rw-r--r-- | lib/handlebars/compiler/compiler.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/handlebars/compiler/compiler.js b/lib/handlebars/compiler/compiler.js index 5158294..33bf120 100644 --- a/lib/handlebars/compiler/compiler.js +++ b/lib/handlebars/compiler/compiler.js @@ -1,8 +1,9 @@ - - +var compilerbase = require("./base"); exports.attach = function(Handlebars) { + compilerbase.attach(Handlebars); + // BEGIN(BROWSER) /*jshint eqnull:true*/ |