summaryrefslogtreecommitdiffstats
path: root/lib/handlebars/base.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/handlebars/base.js')
-rw-r--r--lib/handlebars/base.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/handlebars/base.js b/lib/handlebars/base.js
index 659295c..ca4b159 100644
--- a/lib/handlebars/base.js
+++ b/lib/handlebars/base.js
@@ -3,7 +3,7 @@
/*jshint eqnull:true*/
this.Handlebars = {};
-(function() {
+(function(Handlebars) {
Handlebars.VERSION = "1.0.rc.1";
@@ -111,9 +111,9 @@ Handlebars.registerHelper('log', function(context) {
Handlebars.log(context);
});
-}());
+}(this.Handlebars));
// END(BROWSER)
-module.exports = Handlebars;
+module.exports = this.Handlebars;