summaryrefslogtreecommitdiffstats
path: root/runtime.js
diff options
context:
space:
mode:
authorgrassick <clayton@claytronics.org>2015-02-18 10:57:02 -0500
committergrassick <clayton@claytronics.org>2015-02-18 10:57:02 -0500
commit71690ae39d1913e7f58635494859400fb54553d7 (patch)
tree91e75bf174491d5a62025c823389217994cc94df /runtime.js
parent3c9ff77e68550d7c6676b95dd2bc947d6a0de741 (diff)
downloadhandlebars.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.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime.js b/runtime.js
index 1896fa9..306207c 100644
--- a/runtime.js
+++ b/runtime.js
@@ -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'];