diff options
Diffstat (limited to 'lib/handlebars/base.js')
-rw-r--r-- | lib/handlebars/base.js | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/handlebars/base.js b/lib/handlebars/base.js index 1a25b5c..a5fbeed 100644 --- a/lib/handlebars/base.js +++ b/lib/handlebars/base.js @@ -2,11 +2,9 @@ module.exports.create = function() { -// BEGIN(BROWSER) - var Handlebars = {}; -(function(Handlebars) { +// BEGIN(BROWSER) Handlebars.VERSION = "1.0.0-rc.3"; Handlebars.COMPILER_REVISION = 2; @@ -147,8 +145,6 @@ Handlebars.registerHelper('log', function(context, options) { Handlebars.log(level, context); }); -}(Handlebars)); - // END(BROWSER) return Handlebars; |