diff options
author | grassick <clayton@claytronics.org> | 2015-02-18 10:57:02 -0500 |
---|---|---|
committer | grassick <clayton@claytronics.org> | 2015-02-18 10:57:02 -0500 |
commit | 71690ae39d1913e7f58635494859400fb54553d7 (patch) | |
tree | 91e75bf174491d5a62025c823389217994cc94df /runtime.js | |
parent | 3c9ff77e68550d7c6676b95dd2bc947d6a0de741 (diff) | |
download | handlebars.js-71690ae39d1913e7f58635494859400fb54553d7.zip handlebars.js-71690ae39d1913e7f58635494859400fb54553d7.tar.gz handlebars.js-71690ae39d1913e7f58635494859400fb54553d7.tar.bz2 |
default is a reserved word
Quoting it to fix in older browsers, especially Android 2.3.x.
Diffstat (limited to 'runtime.js')
-rw-r--r-- | runtime.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,3 +1,3 @@ // Create a simple path alias to allow browserify to resolve // the runtime on a supported path. -module.exports = require('./dist/cjs/handlebars.runtime').default; +module.exports = require('./dist/cjs/handlebars.runtime')['default']; |