summaryrefslogtreecommitdiffstats
path: root/lib/handlebars/compiler/compiler.js
diff options
context:
space:
mode:
authorTommy Messbauer <tommy@vast.com>2012-08-29 15:07:15 -0500
committerTommy Messbauer <tommy@vast.com>2012-08-29 15:07:15 -0500
commiteccc7c35ca3221b0a168485d5c323d6054958a3e (patch)
tree798eef005c0518bfdf018816c1b7c2ab0d20dbe2 /lib/handlebars/compiler/compiler.js
parent7c4813b417eaf4b9aab597dcd618857b8419f301 (diff)
downloadhandlebars.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.js5
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*/