diff options
Diffstat (limited to 'lib/handlebars/compiler/compiler.js')
-rw-r--r-- | lib/handlebars/compiler/compiler.js | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/lib/handlebars/compiler/compiler.js b/lib/handlebars/compiler/compiler.js index 7578dd2..6dc43d6 100644 --- a/lib/handlebars/compiler/compiler.js +++ b/lib/handlebars/compiler/compiler.js @@ -1,4 +1,8 @@ -var Handlebars = require("./base"); +var compilerbase = require("./base"); + +exports.attach = function(Handlebars) { + +compilerbase.attach(Handlebars); // BEGIN(BROWSER) @@ -1062,5 +1066,11 @@ Handlebars.compile = function(string, options) { }; }; + // END(BROWSER) +return Handlebars; + +}; + + |