diff options
author | kpdecker <kpdecker@gmail.com> | 2011-07-30 12:18:56 -0500 |
---|---|---|
committer | kpdecker <kpdecker@gmail.com> | 2011-07-30 12:18:56 -0500 |
commit | 4a9270aa389c9afe3cc68d73dd79abe643186a5b (patch) | |
tree | 5909fa99eb2fdee0b6cc71dfa0fd99b9a972e971 /lib/handlebars/compiler/compiler.js | |
parent | 59f5331db47c4c6dce1cb82d05f25d08362b14b2 (diff) | |
download | handlebars.js-4a9270aa389c9afe3cc68d73dd79abe643186a5b.zip handlebars.js-4a9270aa389c9afe3cc68d73dd79abe643186a5b.tar.gz handlebars.js-4a9270aa389c9afe3cc68d73dd79abe643186a5b.tar.bz2 |
Fix module loading within node
Diffstat (limited to 'lib/handlebars/compiler/compiler.js')
-rw-r--r-- | lib/handlebars/compiler/compiler.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/handlebars/compiler/compiler.js b/lib/handlebars/compiler/compiler.js index 7739f9d..c9fb7f8 100644 --- a/lib/handlebars/compiler/compiler.js +++ b/lib/handlebars/compiler/compiler.js @@ -1,4 +1,4 @@ -var Handlebars = require("handlebars"); +var Handlebars = require("./base"); // BEGIN(BROWSER) Handlebars.Compiler = function() {}; |