diff options
author | tomhuda <tomhuda@tilde.io> | 2012-05-26 14:47:32 -0700 |
---|---|---|
committer | tomhuda <tomhuda@tilde.io> | 2012-05-26 14:47:32 -0700 |
commit | 8e70e3b58b7416b7002f2c16e5daa8e9d39c4807 (patch) | |
tree | 6c8ff3c1a8570cb32eb91f7656813172fae56261 /lib/handlebars/base.js | |
parent | 730c41292545e666b606a55c115b516eaebc903f (diff) | |
download | handlebars.js-8e70e3b58b7416b7002f2c16e5daa8e9d39c4807.zip handlebars.js-8e70e3b58b7416b7002f2c16e5daa8e9d39c4807.tar.gz handlebars.js-8e70e3b58b7416b7002f2c16e5daa8e9d39c4807.tar.bz2 |
Don't assume execution in the top context
Diffstat (limited to 'lib/handlebars/base.js')
-rw-r--r-- | lib/handlebars/base.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/handlebars/base.js b/lib/handlebars/base.js index 7c9693b..e1b9476 100644 --- a/lib/handlebars/base.js +++ b/lib/handlebars/base.js @@ -1,7 +1,7 @@ // BEGIN(BROWSER) /*jshint eqnull:true*/ -var Handlebars = {}; +this.Handlebars = {}; (function() { |