diff options
author | kpdecker <kpdecker@gmail.com> | 2014-08-25 22:04:11 -0500 |
---|---|---|
committer | kpdecker <kpdecker@gmail.com> | 2014-08-25 22:04:11 -0500 |
commit | b41459055a77805922549a4c31c6d403a38d111d (patch) | |
tree | 15acb2dedd62037f75bbbb6e0a760fc37ccd6d4e /lib/handlebars.runtime.js | |
parent | 84342b62154921e3f83201e7624114a4cd51f26e (diff) | |
download | handlebars.js-b41459055a77805922549a4c31c6d403a38d111d.zip handlebars.js-b41459055a77805922549a4c31c6d403a38d111d.tar.gz handlebars.js-b41459055a77805922549a4c31c6d403a38d111d.tar.bz2 |
Expose default compatibility wrapper for umd build
Diffstat (limited to 'lib/handlebars.runtime.js')
-rw-r--r-- | lib/handlebars.runtime.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/handlebars.runtime.js b/lib/handlebars.runtime.js index a05812b..bc07714 100644 --- a/lib/handlebars.runtime.js +++ b/lib/handlebars.runtime.js @@ -29,4 +29,6 @@ var create = function() { var Handlebars = create(); Handlebars.create = create; +Handlebars['default'] = Handlebars; + export default Handlebars; |