Fix loading under node
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user